How to use Greek Letters in equation

122 visualizaciones (últimos 30 días)
Aloe
Aloe el 26 de Jul. de 2022
Respondida: Stephen23 el 26 de Jul. de 2022
Hello
I am still new to MatLAB but below is my attempt on using greek letters in my equation. It comes up with an error saying "Invalid use of operator" and some other errors in connector which is confusing for me. Been trying to fix it but no hope.
Any help will be appreciated.
k1 = \omega .* sqrt((\mu .* \epsilon)/(2)) .* sqrt((1 + ((\sigma)/(\epsilon .* \omega))^2) + 1);
Invalid use of operator.

Error in connector.internal.fevalMatlab

Error in connector.internal.fevalJSON
k2 = \omega .* sqrt((\mu .* \epsilon)/(2)) .* sqrt((1 + ((\sigma)/(\epsilon .* \omega))^2) - 1);
k = k1 + i.*k2;
disp(k)
  6 comentarios
KSSV
KSSV el 26 de Jul. de 2022
Why you want special symbols in equation? They are variables.
Aloe
Aloe el 26 de Jul. de 2022
@KSSV My equation has them as constants so I thought I could use them as constants like that

Iniciar sesión para comentar.

Respuestas (2)

Aloe
Aloe el 26 de Jul. de 2022
Editada: Aloe el 26 de Jul. de 2022
I improved it and hope this makes it more right to be considered a code in MatLAB
omega = evalin(symengine, '`ω`');
mu = evalin(symengine, '`µ`');
epsilon = evalin(symengine, '`ϵ`');
sigma = evalin(symengine, '`σ`');
k1 = omega * sqrt((mu .* epsilon)/(2)) * sqrt((1 + ((sigma)/(epsilon * omega))^2)+1);
k2 = omega * sqrt((mu * epsilon)/(2)) * sqrt((1 + ((sigma)/(epsilon * omega))^2)-1);
k = k1 + 1i*k2;
disp(k)

Stephen23
Stephen23 el 26 de Jul. de 2022
The MATLAB approach:
syms omega mu epsilon sigma
k1 = omega .* sqrt((mu .* epsilon)/(2)) .* sqrt((1 + ((sigma)/(epsilon .* omega))^2) + 1);
k2 = omega .* sqrt((mu .* epsilon)/(2)) .* sqrt((1 + ((sigma)/(epsilon .* omega))^2) - 1);
k = k1 + i.*k2
k = 

Categorías

Más información sobre Labels and Annotations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by