for loop with syms variable

3 vues (au cours des 30 derniers jours)
Tony Yu
Tony Yu le 29 Juin 2020
Commenté : madhan ravi le 29 Juin 2020
I am trying to make a loop such that will generate c1=cos(th1) c2=cos(th2).....etc, how can I fix this?
syms th th1 th2 th3 th4 th5 th6
for N=1:6
c(N)=cos(th(N));
end

Réponse acceptée

madhan ravi
madhan ravi le 29 Juin 2020
Modifié(e) : madhan ravi le 29 Juin 2020
% Newer versions
syms th [1, 6]
c = cos(th)
%Older versions
th = sym('th', [1, 6]);
syms(th)
c = cos(th)
  2 commentaires
Tony Yu
Tony Yu le 29 Juin 2020
thanks for suggestion, but that only gives c =
[ cos(th1), cos(th2), cos(th3), cos(th4), cos(th5), cos(th6)]

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by