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!