フィルターのクリア

i just want to plot y=x in matlab mobile

2 ビュー (過去 30 日間)
precious agbagharauka
precious agbagharauka 2022 年 1 月 5 日
i just want to plot y=x in matlab mobile

採用された回答

Walter Roberson
Walter Roberson 2022 年 1 月 5 日
syms x
y = x;
fplot(y)
or
x = linspace(-10,10);
y = x;
plot(x, y);

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by