Borrar filtros
Borrar filtros

Typing an equation in matlab with greek letters

25 visualizaciones (últimos 30 días)
Panagiota Chatzi
Panagiota Chatzi el 20 de Mayo de 2019
Editada: Walter Roberson el 11 de Dic. de 2023
Hello,
I have a problem with the greek letters in the line below. How can i insert the greek letters and also multiply them with each other the same time?
rs=(kB*T)/(4*π*η*D0);
Thank you!
  2 comentarios
gonzalo Mier
gonzalo Mier el 20 de Mayo de 2019
As far as I know you cannot use special symbols in matlab. You have to write them as pi and eta
dpb
dpb el 21 de Mayo de 2019
Indeed, not allowable, not just what you know... :)
variable-names has the rules.
It doesn't seem as though there really is any direct reason the character set couldn't be extended, but never seems to occur. Of course, there are potential issues with internationalization and not all character sets are the same, but doesn't seem insurmountable.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 21 de Mayo de 2019
Editada: Walter Roberson el 21 de Mayo de 2019
syms kB T D0
Pi = evalin(symengine, '`π`');
nu = evalin(symengine, '`η`');
rs=(kB*T)/(4*Pi*nu*D0);
rs =
(T*kB)/(4*D0*`η`*`π`)
... Just don't ask to symvar(rs)
  12 comentarios
Walter Roberson
Walter Roberson el 13 de En. de 2023
You forgot the four var* symbols ;)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with Symbolic Math Toolbox 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!

Translated by