Graphing using linspace command
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I am trying to graph the function y = t^2 * exp(-t/2) * sin(4*t) where t is user input. I do not need help making a graph, but I cannot get y to be a matrix. Please advise.
0 comentarios
Respuestas (1)
Star Strider
el 30 de En. de 2018
I would do something like this:
endtc = inputdlg('Maximum time for the simulation ');
endt = str2double(endtc{:});
t = linspace(0, endt, endt*10);
y = t.^2 .* exp(-t/2) .* sin(4*t); % Use Element-Wise Operations
Experiment to get the result you want.
0 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!