필터 지우기
필터 지우기

I have 20 values of lambda and 16 values of t and a matrix of size 15x16 how can I find exp(-lambda*t)*v

조회 수: 1 (최근 30일)
lambda=linspace(.1,1.99,20);
t=linspace(0,1,16);
  댓글 수: 1
dpb
dpb 2014년 10월 1일
I did it for you this time, but please format the code to be legible--note that two blanks before the first line of a paragraph starts a code section. Look at the format for the posting in the Edit window and compare what happens in the Preview window if you remove one of those, etc., ...

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

채택된 답변

Star Strider
Star Strider 2014년 10월 1일
편집: Star Strider 2014년 10월 1일
I have no idea what data you are analysing or simulating, so I have no idea what your constraints might be. One option would be to simply specify ‘lambda’ to be 16 rather than 20 values over the same span:
lambda=linspace(.1,1.99,16);
A second option is to extrapolate ‘v’ to also be (20x15):
lv = lambda(1:15);
ve = interp1(lv, v, lambda, 'pchip', 'extrap');
eltv = exp(-lambda'*t).*ve;
figure(2)
plot(t, eltv)
grid
This assumes that ‘v’ is in some way related to ‘lambda’, so the extrapolation takes the first 15 values of ‘lambda’ and uses the full ‘lambda’ vector to extrapolate ‘v’ to ‘ve’. Since ‘lambda’ is linear, it is as good a choice as any. Choose the extrapolation method that is most appropriate for your data among the available options. (I chose 'pchip' for no particular reason. You must choose a method if you want to extrapolate.)
  댓글 수: 4

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by