How to sketch this in matlab? -2u(t+2)+2​r(t+2)-2r(​t-1)+u(t-2​)-r(t-2)+r​(t-4)-r(t-​5)+u(t-7)+​r(t-7)

26 visualizaciones (últimos 30 días)
-2u(t+2)+2r(t+2)-2r(t-1)+u(t-2)-r(t-2)+r(t-4)-r(t-5)+u(t-7)+r(t-7) how to sketch this in matlab?

Respuestas (1)

Hernia Baby
Hernia Baby el 17 de En. de 2022
How about scatter3?
example
r = 1:10;
t = r;
u = r;
[r,t,u] = meshgrid(r,t,u);
F = -2*u.*(t+2)+2*r.*(t+2)-2*r.*(t-1)+u.*(t-2)-r.*(t-2)+r.*(t-4)-r.*(t-5)+u.*(t-7)+r.*(t-7);
scatter3(r(:),t(:),u(:),10,F(:))

Community Treasure Hunt

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

Start Hunting!

Translated by