x(t)=log(8)[t+Π(t)], t=[1e-4, 10]

2 ビュー (過去 30 日間)
milton
milton 2020 年 11 月 8 日
コメント済み: milton 2020 年 11 月 25 日
I want to restore the above signal on a variable and plot it in the time gap that it is given. Any help please?

採用された回答

Rohit Pappu
Rohit Pappu 2020 年 11 月 25 日
% Vector to define t
t = [1e-4:0.001:10];
% product of all time instances
prod_t = prod(t);
% x(t)
x = log(8)*(t+prod_t);
% Plot t on x axis and x(t) on y axis
plot(t,x);
  1 件のコメント
milton
milton 2020 年 11 月 25 日
Thank you! It works perfectly!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by