how to write cos*cos*sin
Afficher commentaires plus anciens
how to write cos*cos*sin
Réponses (2)
Azzi Abdelmalek
le 14 Juil 2016
f=@(x) cos(x)*cos(x)*sin(x)
2 commentaires
Jose Louis
le 15 Juil 2016
Azzi Abdelmalek
le 15 Juil 2016
There is nothing about solving in your question, please edit your question and make it clear, explain what are you data and what are your unknown variables
Star Strider
le 15 Juil 2016
You have to use element-wise operations:
ccs = @(x) cos(x).*cos(x).*sin(x);
Catégories
En savoir plus sur Operators and Elementary Operations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!