![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/344880/image.jpeg)
how to write code for intergral with two variables?
1 回表示 (過去 30 日間)
古いコメントを表示
I want to plot this function
f={(1+cos(w))*cos(w*x)}/(pi^2-w^2)+sin(w)*sin(w*x)/(pi^2-w^2)
int(f,w,0,n)
so i wrote code for this function
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
x=-3:0.01:3;
syms w
A=(1+cos(w))*cos(w*x);
B=sin(w)*sin(w*x);
C=pi^2-w^2;
f=A/C+B/C;
F5=int(f,'w',0,5)
plot(x,F5)
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
then the process did not finish. what's wrong on my code?
and how to plot this function?
0 件のコメント
回答 (1 件)
Surya Talluri
2020 年 8 月 12 日
I understand that you are trying to get integral values at 600 values of x, which is taking so much time to run. You can use “fplot” function to plot any symbolic expressions in required interval.
syms w x
pi = sym(pi)
A=(1+cos(w))*cos(w*x);
B=sin(w)*sin(w*x);
C=pi^2-w^2;
f=A/C+B/C
F5=int(f,w,0,5)
fplot(F5, [-3, 3])
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/344880/image.jpeg)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で 가정(Assumption) についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!