could anyone help me how to write the expression in matlab

조회 수: 3 (최근 30일)
Prabha Kumaresan
Prabha Kumaresan 2018년 8월 22일
댓글: Yuvaraj Venkataswamy 2018년 8월 22일
Could anyone help me how to write the attached expression in matlab
  댓글 수: 1
Walter Roberson
Walter Roberson 2018년 8월 22일
Is it correct that that is intended to be a recursive definition for tau ? If so then we would need to know t_0 in order to calculate the other values.

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

답변 (1개)

Yuvaraj Venkataswamy
Yuvaraj Venkataswamy 2018년 8월 22일
if true
M=yourInteger; % greater than 1
for k=0:M-1
t(M-1)=[M-1;k].*t(k)
end
end
  댓글 수: 3
Yuvaraj Venkataswamy
Yuvaraj Venkataswamy 2018년 8월 22일
Yes sir. You are correct. But, in the attached figure, the notation is look like a vector. In that case, I did. Thank you.

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

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by