Tagged Questions

5
votes
1answer
2k views

Mean filter in MATLAB without loops or signal processing toolbox

I need to implement a mean filter on a data set, but I don't have access to the signal processing toolbox. Is there a way to do this without using a for loop? Here's the code I've got working: ...
3
votes
2answers
142 views

Generating a new list with same std and mean

How do I generate a new list from random numbers that have the same mean and standard deviation from the original list? I tried newlist = mean(list) + std(list)*randn(100,1); which I found on the ...
2
votes
2answers
517 views

Assign a column mean to specific matrix values in MATLAB

I want to have something like: Mu = mean(X); % column-wise means X(X == 0) = Mu(current_column); % assign the mean value of the current column to the zero-element But how do I tell matlab that I ...
2
votes
3answers
1k views

How to average over a cell-array of arrays?

I have a cell array c of equal-sized arrays, i.e. size(c{n}) = [ m l ... ] for any n. How can I get the mean values (averaging over the cell array index n) for all array elements in one sweep? I ...
1
vote
3answers
102 views

calculating mean and maximum value of a 4D data

i have a 4D image data. 384-by-276-by-20-by-5. where data(X,Y,T,V), X=xlocation, Y=ylocation, T= time, V=vessel location. I would like to have a mean value over time and maximum value over time for ...
1
vote
1answer
3k views

How should I perform this binning and averaging in MATLAB?

I am trying to perform a binning average. I am using the code: Avg = mean(reshape(a,300,144,27)); AvgF = squeeze(Avg); The last line gets rid of singleton dimensions. So as can be seen I am ...
0
votes
2answers
31 views

MATLAB: sum of one row

I am trying to streamline my code. I have a 2-column array from which I'd like to extract the averages of the columns and store them as X and Y. I tried using the following code: [x y] = ...
-1
votes
1answer
358 views

Matlab loops for a function

I am trying to make a loop to redo a Matlab function 1000 times. Here's the program d = unifrnd (0,10,[10,1]); c = d.^(-2); a = round(unifrnd(0,1,[1,10]); e = a*c btotal = e+1 SIR = 1/btotal What I ...
-5
votes
1answer
651 views

Reducing Mean Square Error

The topic of mine is face recognition using artificial neural networks using MATLAB code. I tried my work by taking the images from web and started implementing the program by using neural networks. ...