필터 지우기
필터 지우기

I'm not sure it's true. If I have a mistake, can you fix it...

조회 수: 2 (최근 30일)
Bilal Ates
Bilal Ates 2020년 7월 10일
댓글: Bilal Ates 2020년 7월 10일
I'm not sure it's true. If I have a mistake, can you fix it
syms x y z;
f0=-4*z*exp(-x^2*y-z^2)*cos(x^2*y)-10*cos(x^2*y)*y*x^2+4*sin(x^2*y)*x^4*y^2+4*cos(x^2*y)*x^4*y^2-sin(x^2*y);
f1=int(f0,z);
f1=int(f1,y);
f1=int(f1,x);f1=simplify(int(f1,x))
f2=int(f0,z);
f2=int(f2,x);
f2=int(f2,x);
f2=int(f2,x);
f2=simplify(int(f2,y))

답변 (1개)

Steven Lord
Steven Lord 2020년 7월 10일
f0=-4*z*exp(-x^2*y-z^2)*cos(x^2*y)-10*cos(x^2*y)*y*x^2+4*sin(x^2*y)*x^4*y^2+4*cos(x^2*y)*x^4*y^2-sin(x^2*y);
This multiplies the exponential term only by the first cosine term. That doesn't match the problem as written. You're missing a set of parentheses.
  댓글 수: 3
Bilal Ates
Bilal Ates 2020년 7월 10일
f0=-4*z*exp(-x^2*y-z^2)*(cos(x^2*y)-10*cos(x^2*y)*y*x^2+4*sin(x^2*y)*x^4*y^2+4*cos(x^2*y)*x^4*y^2-sin(x^2*y));
is it actually this way?
Bilal Ates
Bilal Ates 2020년 7월 10일
syms x y z;
f0=-4*z*exp(-x^2*y-z^2)*(cos(x^2*y)-10*cos(x^2*y)*y*x^2+4*sin(x^2*y)*x^4*y^2+4*cos(x^2*y)*x^4*y^2-sin(x^2*y));
f1=int(f0,z);
f1=int(f1,y);
f1=int(f1,x);
f1=simplify(int(f1,x))
f2=int(f0,z);
f2=int(f2,y);
f2=int(f2,x);
f2=simplify(int(f2,y))
f3=int(f0,z);
f3=int(f3,y);
f3=int(f3,x);
f3=simplify(int(f3,z))

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by