The expression to the left of the equals sign is not a valid target for an assignment.
조회 수: 2 (최근 30일)
이전 댓글 표시
I wrote the following code for definite integral but it give the statement
The expression to the left of the equals sign is not a valid target for an assignment
please tell me the problem
code:
syms x
S=int(sin(cos(x)), x = 0..1)
댓글 수: 0
답변 (2개)
David Sanchez
2015년 6월 10일
You are using the notation used by
numeric::int
instead of that to
int
Take a look at their differences in the documentation: they might seems the same, but they are not.
doc numeric::int
doc int
댓글 수: 0
Titus Edelhofer
2015년 6월 10일
Hi,
that's the maple notation. Use the following:
syms x
S=int(sin(cos(x)), x, 0, 1)
Then it should work, although there is no (symbolic) solution to this ...
Titus
댓글 수: 2
Chris Rogers
2017년 4월 12일
This gives me the error "Cannot integrate with respect to '0'. The integration variable must be a symbolic variable."
참고 항목
카테고리
Help Center 및 File Exchange에서 Special Values에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!