Difficulty in storing output in a cell array

1 vue (au cours des 30 derniers jours)
Damith
Damith le 2 Sep 2015
Hi,
I have 3 data matrices (Flow, RowID, and nyears) and need to estimate maximum flow for each year.
The code I developed is below.
Qmax=zeros(max(nyears),length(csvFiles));
for iz=1:1:nyears(5)
for jl=1:1:5
Qmax(iz,jl)=max(Flow{1,jl}([RowID{1,jl}(iz,2):RowID{1,jl}(iz,3)],:));
end
end
The output Qmax is shown below. But, I want to store the output (Qmax) in a cell or double array so the rows in 1st column of Qmax be 95, 2nd column 47, and so on the last column but my code does not do it.
Can somebody guide me?
Thanks in adavance.

Réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by