Volkan Kandemir
METU
Followers: 0 Following: 0
Estadística
15 Preguntas
4 Respuestas
0 Problemas
20 Soluciones
CLASIFICACIÓN
10.104
of 295.467
REPUTACIÓN
4
CONTRIBUCIONES
15 Preguntas
4 Respuestas
ACEPTACIÓN DE RESPUESTAS
46.67%
VOTOS RECIBIDOS
4
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
22.560
of 153.912
CONTRIBUCIONES
0 Problemas
20 Soluciones
PUNTUACIÓN
210
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
is there a way to increase the speed of this code
The following code is taken from the book "MATLAB Guide to Finite Elements" and it takes too much time to run this code and I am...
casi 11 años hace | 1 respuesta | 0
1
respuestaPregunta
Is there a way to catch errors with out using try catch statements?
Hi, I have created a GUI and deployed it. It works well but sometimes it gives error but user can't see it. Is there a way to...
casi 11 años hace | 2 respuestas | 0
2
respuestasPregunta
Easy question for editbox?
Hello, I am using edit box as an input window. When user click enter button callback of the edit box runs and takes the input...
casi 11 años hace | 1 respuesta | 0
1
respuestaPregunta
how to obtain brushed data programaticly
The same question is asked on the following link last year. ( http://www.mathworks.com/matlabcentral/answers/25488-brush-data-c...
alrededor de 11 años hace | 0 respuestas | 0
0
respuestasPregunta
Properties of user defined classes cannot be seen in variable editor. why? Please look at the picture.
Hi every one. As you can see in the picture at the following link I can not see properties of user defined classes in my workspa...
más de 11 años hace | 2 respuestas | 2
2
respuestasPassing Data Between GUI and .m Script
It is better not to use GUIDE. Developing a GUI with a m file is not so hard. You can use GLOBAL variable to transfer and store ...
más de 11 años hace | 0
Pregunta
How can I change property of a user defined class by using set(my_class,'my_property',my_value)
How can I change property of a user defined class by using set(my_class,'my_property',my_value)
más de 11 años hace | 1 respuesta | 0
1
respuestaPregunta
Please Help Me About Sub and Super Classes
Hello, I am trying to learn classes in Matlab here is a basic question. How can I write two classes A and B in order to represen...
más de 11 años hace | 1 respuesta | 0
1
respuestaHow to pass a structure variable from callback to other callback .
you can use global variables easly to transfer data from one function to another one. function main myfun1 myfun2 ...
casi 12 años hace | 0
Pregunta
How to select point or lines on the graph
Hi everyone. Please run the following code. It will create a scatter grap with 5 points. I want to select the nearest point on t...
casi 12 años hace | 2 respuestas | 0
2
respuestasPregunta
Finding size of a cell
Hi everyone, Let create a cell multi dimensinal cell A with the following code. for k=1:4 for i=1:k fo...
más de 12 años hace | 1 respuesta | 0
1
respuestaResuelto
Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
más de 12 años hace
Resuelto
Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...
más de 12 años hace
Resuelto
Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...
más de 12 años hace
Resuelto
Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...
más de 12 años hace
Resuelto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...
más de 12 años hace
Resuelto
Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.
más de 12 años hace
Resuelto
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
más de 12 años hace
Resuelto
How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...
más de 12 años hace
Resuelto
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...
más de 12 años hace
Resuelto
Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...
más de 12 años hace
Resuelto
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
más de 12 años hace
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
más de 12 años hace
Resuelto
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...
más de 12 años hace
Resuelto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
más de 12 años hace
Resuelto
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
más de 12 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
más de 12 años hace