How can I make the dimensions agree for this function

조회 수: 2 (최근 30일)
cakey
cakey 2014년 12월 1일
댓글: cakey 2014년 12월 1일
f = @(x) x - exp(cos(transpose[1:4])*sum(x)); And x=[2.5;2;1.4;.9] is a column vector. when I subtract it says error Matrix dimensions must agree.
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2014년 12월 1일
After editing your question you made errors
cakey
cakey 2014년 12월 1일
Should it be: f = @(x) x - exp(cos(transpose([1:4]))*sum(x))

댓글을 달려면 로그인하십시오.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 12월 1일
편집: Azzi Abdelmalek 2014년 12월 1일
f = @(x) x.' - exp(cos([1:4]*sum(x)))
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2014년 12월 1일
편집: Azzi Abdelmalek 2014년 12월 1일
f = @(x) x - exp(cos([1:4]')*sum(x));
x=[2.5;2;1.4;.9]
f(x)
cakey
cakey 2014년 12월 1일
Thanks, it works now!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by