Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
milton
milton le 8 Nov 2020
Commenté : milton le 25 Nov 2020
I want to restore the above signal on a variable and plot it in the time gap that it is given. Any help please?

Réponse acceptée

Rohit Pappu
Rohit Pappu le 25 Nov 2020
% 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 commentaire
milton
milton le 25 Nov 2020
Thank you! It works perfectly!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by