why the + sign get invalid use of operator?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
f=@(x)40*x.^1.5-875*x.+350000
f=@(x)40*x.^1.5-875*x.+350000
↑
Error: Invalid use of operator.
0 comentarios
Respuestas (2)
Stephen23
el 7 de Mzo. de 2021
Editada: Stephen23
el 7 de Mzo. de 2021
Note the difference:
1 + 2 % what MATLAB actually supports
1 .+ 2 % what you used
There is no separate array version of the plus operator, it always operates array-wise.
Rather than guessing and inventing operators, it is much more reliable to follow the MATLAB documentation:
0 comentarios
wenchong chen
el 7 de Mzo. de 2021
1 comentario
Steven Lord
el 7 de Mzo. de 2021
Yes, that looks correct to me, at least for scalar values of x. If you want f to accept non-scalar values of x you need to use elementwise matrix power rather than matrix power as the error message indicates.
f=@(x)40.*x^1.5-875.*x+350000;
f(1)
f(1:10)
Ver también
Categorías
Más información sobre Operators and Elementary Operations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!