필터 지우기
필터 지우기

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

조회 수: 1 (최근 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 CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by