Fill vector with function

10 ビュー (過去 30 日間)
Adam Tomasek
Adam Tomasek 2019 年 10 月 1 日
回答済み: Dinesh Yadav 2019 年 10 月 4 日

I have this assignment. Can you please help me how to solve that? Create vector xx1 0,1 of lenght 100, % create vector yy1 and fill it with y = x*x use 3x3 subplot and plot graph xx1 vs. yy1 on top center position.

  1 件のコメント
darova
darova 2019 年 10 月 1 日
Show us what you have already done

サインインしてコメントする。

回答 (1 件)

Dinesh Yadav
Dinesh Yadav 2019 年 10 月 4 日
Kindly try to solve and show what you have attempted before posting a question. The following code might help
a=randn(1,100);
y= a.^2;
figure;
for n = 1:9
subplot(3,3,n)
end
subplot(3,3,8);
plot(a,y);
Try to modify this code to get what you want.

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by