필터 지우기
필터 지우기

Multiplying Function Handles quad

조회 수: 3 (최근 30일)
sarngon
sarngon 2015년 3월 20일
댓글: Torsten 2015년 3월 20일
Hi Guys , When I run this code below I get Error using * Inner matrix dimensions must agree. So whats your solution for this .
Error in f8>@(w)bb(w)*cc(w) (line 31)
f3 =@(w)bb(w)*cc(w);
Thanks .
code:
bb=@(w) (((1+w/wr*l)*vi/ccons).^(k-1));
cc=@(w) (2.71.^((-((1+w/wr*l)*vi/ccons)).^k));
f3 =@(w)bb(w)*cc(w);

채택된 답변

Torsten
Torsten 2015년 3월 20일
f3 =@(w)bb(w).*cc(w);
Best wishes
Torsten.
  댓글 수: 2
sarngon
sarngon 2015년 3월 20일
Thanks ,
Can You explain why should I use dot there ?
Torsten
Torsten 2015년 3월 20일
w is a vector, say w=(w1,w2,...,wn), and the value of your function to be integrated at positions
w=(w1,w2,...,wn) is
(bb(w1)*cc(w1),bb(w2)*cc(w2),...,bb(wn)*cc(wn))
Thus you must use elementwise multiplication to get
(bb(w1),bb(w2),...,bb(wn)).*(cc(w1),cc(w2),...,cc(wn))=
(bb(w1)*cc(w1),bb(w2)*cc(w2),...,bb(wn)*cc(wn)).
Best wishes
Torsten.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by