Answered
how to check every single element in a matrix vector wise
A matrix is indexed like this: A(row,column). So to traverse a single column you leave the second value the same while changing ...

bijna 5 jaar ago | 1

| accepted

Answered
Figure box does not show data when using plot(x,y)
The reason is that you are trying to create a plot with a single data point multiple times. So each time you plot there are not ...

bijna 5 jaar ago | 0

| accepted

Answered
How can I find the best parameter values to minimize a function
If you do not really care about efficiency and time you can just loop through and try everything yourself. fftlen = [512 1024 2...

bijna 5 jaar ago | 0

| accepted

Answered
Real Time Data Store in Inf Array
If I understand correctly what you want and a guess at how you are formatting it. Pointer = 1; window = sizeFilter % However ...

bijna 5 jaar ago | 0

Answered
Resampling audio file to first 10 sec of each minute
There are many ways to do this depending on what exactly it is you want to do and how you want to do it. If you have already imp...

bijna 5 jaar ago | 0

Answered
Obtain z-values in contour plot using x,y coordinates of a point of interest
You could potentially use the interp2 function. If you used Contour(X,Y,Z); you could then use interp2(X,Y,Z,Xq,Yq); to obt...

bijna 5 jaar ago | 2