フィルターのクリア

How do you crete a function file?

1 回表示 (過去 30 日間)
Mark Davies
Mark Davies 2019 年 12 月 13 日
編集済み: Dyuman Joshi 2023 年 3 月 20 日
I need to create a function file that contains the commands to plot ? = sin ? and ? = sin2 ? on the same graph, I need to use the following expression to define the range of x in the function x=0:pi/A:2*pi. I then need to test the function using different values of A. Does this make sense?

採用された回答

Dyuman Joshi
Dyuman Joshi 2019 年 12 月 14 日
編集済み: Dyuman Joshi 2023 年 3 月 20 日
Write the code, for e.g.
function y=graphplot(A)
x=0:pi/A:2*pi;
plot(x, sin(x))
hold on
plot(x, sin(2*x))
hold off
end
Call the function in the command window with an arbitary value of 'A'
graphplot(100) and plotted graphs will come as output. Try to give large values of A to ensure smooth curvesa and make sure the file is saved as the same name as the function.
  1 件のコメント
Mark Davies
Mark Davies 2019 年 12 月 19 日
Thank you :)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by