Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
離散関数y [ n ] = x [ n -5] / (1 + x [ n ])をプロットする方法を理解しようとしています 。 正しい構文を理解するための助けをいただければ幸いです。
あなたのeqは以下と同等であるため:
y[n+5] = (x[n])/(1+x[n+5])
後者をある範囲でプロットします(必要に応じて変更します):
lower_limit=-10 upper_limit=10 N=100; x=linspace(lower_limit,upper_limit,N); y=x(1:end-5)./(1-x(6:end)); plot(x(6:end),y)