How to insert function in matlab
11 ビュー (過去 30 日間)
古いコメントを表示
How can I insert these functions in matlab?
f1= 3 cos (x+2theta) f2= 3 exp(-3x/pi)
x vary from 0 to 2pi
0 件のコメント
回答 (1 件)
Star Strider
2018 年 1 月 22 日
If you want to evaluate them as statements:
theta = pi/2; % Choose A Value
x = linspace(0, 2*pi, 50);
f1 = 3*cos(x+2*theta)
f2 = 3*exp(-3*x/pi)
f1 = @(x,theta) 3*cos(x+2*theta)
f2 = @(x) 3*exp(-3*x/pi)
then call them as you would any other function.
For ‘f1’, the easiest way to evaluate it with multiple (vector) values for ‘x’ and ‘theta’ is to use the results of the meshgrid (link) function.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!