Function of many input arguments returns only one value

조회 수: 1 (최근 30일)
Beaya
Beaya 2013년 10월 27일
편집: Azzi Abdelmalek 2013년 10월 27일
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...

채택된 답변

Azzi Abdelmalek
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개)

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by