how to plot in simulink
古いコメントを表示
i designed a simulink model where i was in need to plot the result vectro obtained , so how can i do that as i didnt get any method to do that
i want to plot my ouput vs input which are both vectors
1 件のコメント
Manikanta Aditya
2024 年 3 月 28 日
You can plot the output versus input vectors in Simulink using the To Workspace block for saving the vectors and then using MATLAB’s plot function.
You can Save the vectors in Simulink, run the model and plot the vectors in MATLAB
plot(input, output)
xlabel('Input')
ylabel('Output')
title('Output vs Input')
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Simulink Functions についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!