How to extract only first few values of step function and perform arithmetic operations on those values?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
yr(i1,:) = step(tf1) - error part
for i2 = 1:N
yy(i1,i2) = yr(i1,i2)
end
j(i1,1:N) = (y0(1,:) - yy(i1,:)).^2 - error part
J(i1) = sum(j(i1))
Result of yr is a huge set of 1128 columns of values out of which i only want the first 10 or so and then how to subtact the corresponding of the set from another set and square the obtained results.
1 Kommentar
Antworten (1)
Sarah
am 4 Jan. 2015
From what I understand of your question, you need only the first 10 columns of yr. If this is so, then I would run my loop only 10 times and store the values of the columns in another vector. Then I can perform whatever operations I need with it.
for i=1:10 vector(:,i)=yr(:,i) end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Numerical Integration and Differential Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!