how to write cos*cos*sin
Mostrar comentarios más antiguos
how to write cos*cos*sin
Respuestas (2)
Azzi Abdelmalek
el 14 de Jul. de 2016
f=@(x) cos(x)*cos(x)*sin(x)
2 comentarios
Jose Louis
el 15 de Jul. de 2016
Azzi Abdelmalek
el 15 de Jul. de 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
el 15 de Jul. de 2016
You have to use element-wise operations:
ccs = @(x) cos(x).*cos(x).*sin(x);
Categorías
Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!