how to write cos*cos*sin
古いコメントを表示
回答 (2 件)
Azzi Abdelmalek
2016 年 7 月 14 日
f=@(x) cos(x)*cos(x)*sin(x)
2 件のコメント
Jose Louis
2016 年 7 月 15 日
Azzi Abdelmalek
2016 年 7 月 15 日
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
2016 年 7 月 15 日
You have to use element-wise operations:
ccs = @(x) cos(x).*cos(x).*sin(x);
カテゴリ
ヘルプ センター および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!