フィルターのクリア

I don't want to include initial condition in the plot

1 回表示 (過去 30 日間)
University Glasgow
University Glasgow 2022 年 8 月 29 日
編集済み: University Glasgow 2022 年 8 月 30 日
Hi,
Please, how do omit the initial condition in my plot: I want to omit the plot for t=0: See my code below:
figure
subplot(2,1,1)
plot(z, theta(1:round(nt/10):nt,:))
plot(z, v(1:round(nt/10):nt,:))

採用された回答

dpb
dpb 2022 年 8 月 29 日
Again, way too much code that has no bearing on the issue -- and you don't format your code so can be read on top of that -- we've been thru this discussion before, it seems...
All that is of significance here is
...
subplot(2,1,1)
plot(z, theta(1:round(nt/10):nt,:))
...
and if you don't want the first point, then don't ask for it ...
plot(z(2:end), theta(2:round(nt/10):nt,:))
or, if you really don't care about the initial points or know them from independent ICs, then just replace the first points with nan before calling plot...
subplot(2,1,1)
z(1)=nan;
theta(1,:)=nan;
plot(z, theta(1:round(nt/10):nt,:))

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by