xlabel do not appear in plot
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
가현
el 27 de Mzo. de 2024
Comentada: Dyuman Joshi
el 27 de Mzo. de 2024
%라플라스 변환
syms x s
u1 = stepfun(x,0);
f1 = x.*exp(-3*x).*u1;
Lf = laplace(f1, s);
disp(Lf);
%f(t) plot
t = (-1:0.1:1);
u = stepfun(t,0);
f = t.*exp(-3*t).*u;
figure(2);
xlabel('Time,(s)')
ylabel('f(t)')
grid;
plot(t,f);
legend('f(t)')
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 27 de Mzo. de 2024
Editada: Dyuman Joshi
el 27 de Mzo. de 2024
Call the plot() command first and then define the labels and legend -
syms x s
u1 = stepfun(x,0);
f1 = x.*exp(-3*x).*u1;
Lf = laplace(f1, s);
disp(Lf);
t = (-1:0.1:1);
u = stepfun(t,0);
f = t.*exp(-3*t).*u;
figure(2);
%% plot command
plot(t,f);
%% add details after plotting
xlabel('Time,(s)')
ylabel('f(t)')
grid;
legend('f(t)')
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 빅 데이터 처리 en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!