Clear Filters
Clear Filters

FOR loop standard deviation of multiple images

3 views (last 30 days)
I want to construct a FOR loop to calculate the standard deviations of multiple images all stored within one 4x5 matrix. Then I would like the standard deviations to be stored within the vector B. I keep getting an error message and the code I have right now is:
if true
for E = 1 : 5
for D = 1 : 4
B(1i) = std2(ca{D,E});
end
end
% code
end

Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!