Difficulty in storing output in a cell array

1 visualizzazione (ultimi 30 giorni)
Damith
Damith il 2 Set 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.

Risposte (0)

Categorie

Scopri di più su Structures in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by