could anyone help me how to write the expression in matlab
    8 ビュー (過去 30 日間)
  
       古いコメントを表示
    
Could anyone help me how to write the attached expression in matlab
1 件のコメント
  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
      
 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
      
 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 Center および File Exchange で Creating, Deleting, and Querying Graphics Objects についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!