Numerical function invalid expression
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Leon Ellis
el 2 de Ag. de 2021
Editada: the cyclist
el 2 de Ag. de 2021
I want to defind a function numerically. The function is ((e^2x)*tan(x))/x^3).
I'm using h=@(x)exp(2x).*tan(x)./x.^3 to defind it but it says invalid expression. Please help and thanks in advance.
0 comentarios
Respuesta aceptada
the cyclist
el 2 de Ag. de 2021
Editada: the cyclist
el 2 de Ag. de 2021
You need the explicit multiplication sign 2*x:
h=@(x)exp(2*x).*tan(x)./x.^3
You might also want to put in some parentheses instead of relying on the order of operations, to be certain the expression is evaluated in the order you expect.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings 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!