Function of many input arguments returns only one value
조회 수: 1 (최근 30일)
이전 댓글 표시
I have this function:
n = [0 :1: 40], x = 1.0,
v = ((sin(x + 2.^-n) + cos(3*x + 2.^-n)) - (sin(x) + cos(3*x)))/(2.^-n)
It only displays the result for the first value of n and I would like to get the results for all n from 0 to 40. How do I do this? I tried to modify this in many ways but nothing seems to work...
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 10월 27일
편집: Azzi Abdelmalek
2013년 10월 27일
You missed ./
n = [0 :1: 40], x = 1.0,
v = sin(x + 2.^-n) + cos(3*x + 2.^-n) -(sin(x) + cos(3*x))./(2.^-n)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!