i am trying to make a function that make graphs by giving different value
1 回表示 (過去 30 日間)
古いコメントを表示
function D=po(a,b,c,x1,x2)
x=(x1:0.1:x2);
for j=1:length(x)
M(j)=a*x(j)^2+b*x(j)+c;
end
figure(1)
fplot(@(x) M(j))
grid on
function D=O(a,b,c,x1,x2)
D=arrayfun(@po,a,b,c,x1,x2 );
end
end
1 件のコメント
回答 (1 件)
Shivam Singh
2022 年 2 月 4 日
Hello,
To be familiar with how to write MATLAB code, you may start with the MATLAB Onramp tutorial to quickly learn the essentials of MATLAB. You may also refer the “Nested Functions” to write your MATLAB code.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Construction についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!