How to use Greek Letters in equation

115 Ansichten (letzte 30 Tage)
Aloe
Aloe am 26 Jul. 2022
Beantwortet: Stephen23 am 26 Jul. 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 Kommentare
KSSV
KSSV am 26 Jul. 2022
Why you want special symbols in equation? They are variables.
Aloe
Aloe am 26 Jul. 2022
@KSSV My equation has them as constants so I thought I could use them as constants like that

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Aloe
Aloe am 26 Jul. 2022
Bearbeitet: Aloe am 26 Jul. 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 am 26 Jul. 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 = 

Kategorien

Mehr zu Labels and Annotations finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by