how to write this equation ?

1 vue (au cours des 30 derniers jours)
vaya putra
vaya putra le 27 Juil 2018
Commenté : Walter Roberson le 27 Juil 2018
what's the mistake with my code
T=linspace(100,1,10)
mu = @(T) 0.001.*(0.2414.*10.^(247.8./((T-273)+68.12963)));
Error: Unexpected MATLAB expression.
please help me
  4 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 27 Juil 2018
I have edited the code and attached the results too, Are you looking for this one? Pls confirm
Walter Roberson
Walter Roberson le 27 Juil 2018
Can you attach the .m file that contains the code? I am wondering if there are some hidden characters.
Also, if the line before the assignment to T was a continuation line ending in ... then the assignment could be a syntax error.

Connectez-vous pour commenter.

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 27 Juil 2018
Modifié(e) : KALYAN ACHARJYA le 27 Juil 2018
Its OK, no error
T=linspace(100,1,10)
mu=(0.001.*(0.2414.*10.^(247.8./((T-273)+68.12963))))

Plus de réponses (2)

Mark Saad
Mark Saad le 27 Juil 2018
T = linspace (100, 1, 10);
mu = @(t) 0.001 .* (0.2414 * 10.^(247.8./((t - 273) + 68.12963)));
mu(T)

vaya putra
vaya putra le 27 Juil 2018
i want to calculate T inside of mu
mu(T) 0.001.*(0.2414.*10.^(247.8./((T-273)+68.12963)));
Error: Unexpected MATLAB expression.
  2 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 27 Juil 2018
As per my understanding, you want to calculate mu w.r.t T, Yes?
vaya putra
vaya putra le 27 Juil 2018
yes

Connectez-vous pour commenter.

Catégories

En savoir plus sur Manage Products dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by