Why am I receiving this error?

a = 3*cos(pi)-2*ln(3)+e^4
Error: File: matlabassignment1.m Line: 9 Column: 19
Invalid text character. Check for unsupported symbol, invisible character, or pasting of non-ASCII characters.

1 comentario

Christina
Christina el 31 de Dic. de 2022
a = 3*cos(pi)-2*log(3)+e^4
is also invalid

Iniciar sesión para comentar.

 Respuesta aceptada

Paul
Paul el 31 de Dic. de 2022
Editada: Paul el 31 de Dic. de 2022

0 votos

Assuming you want a numerical evaluation, check out these doc pages: log , exp

Más respuestas (2)

Matt J
Matt J el 31 de Dic. de 2022

0 votos

Try deleting line 9 and retyping it.
Walter Roberson
Walter Roberson el 31 de Dic. de 2022

0 votos

In between the n and the ( you have unicode character decimal 8289, which is known as "Function Application". It is an invisible character in most fonts
Note: e^4 should be written as exp(4) and ln(3) should be log(3)
There turn out to be relatively few programming languages that use ln to indicate logarithm.

Categorías

Más información sobre App Building en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 31 de Dic. de 2022

Editada:

el 31 de Dic. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by