Using Subplot in matlab

4 ビュー (過去 30 日間)
Ahmed Saleh
Ahmed Saleh 2019 年 10 月 19 日
回答済み: Image Analyst 2019 年 10 月 19 日
I couldn't figure how to solve that ! can anyone help me understand it ?

採用された回答

Image Analyst
Image Analyst 2019 年 10 月 19 日
Try this:
x = linspace(1, 10, 500);
y = sin(x) ./ x;
subplot(2, 2, 1);
plot(x, y, 'b-', 'LineWidth', 2);
grid on;
subplot(2, 2, 2);
y = .....
plot(....
etc.
subplot(2, 2, 3);
% code to compute the third y
subplot(2, 2, 4);
% code....
Since x is a vector make sure you use ./, .*, and .^ rather than the non-dotted versions /, *, and ^.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by