Effacer les filtres
Effacer les filtres

The expression to the left of the equals sign is not a valid target for an assignment.

4 vues (au cours des 30 derniers jours)
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)

Réponses (2)

David Sanchez
David Sanchez le 10 Juin 2015
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

Titus Edelhofer
Titus Edelhofer le 10 Juin 2015
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 commentaires
Chris Rogers
Chris Rogers le 12 Avr 2017
This gives me the error "Cannot integrate with respect to '0'. The integration variable must be a symbolic variable."

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by