How can I make the dimensions agree for this function
조회 수: 2 (최근 30일)
이전 댓글 표시
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
2014년 12월 1일
편집: Azzi Abdelmalek
2014년 12월 1일
f = @(x) x.' - exp(cos([1:4]*sum(x)))
댓글 수: 2
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)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 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!