フィルターのクリア

I have one for time loop under which a caclulation taking place for a 1d domain (let say 1:n). I want to plot my data against 1d domain for all times.

1 回表示 (過去 30 日間)
for t=0:2:6
for i=1:n
%some calculation
end
% Let say this calculation gave us some value H(1:n) for t=0, t=2,and t=6
H
% I want to plot this H at all i. for all time steps (which will show me variation with time)
end

回答 (1 件)

Torsten
Torsten 2022 年 11 月 4 日
for t=0:2:6
for i=1:n
H(1+t/2,i) = something
end
end
plot(1:n,H)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by