Plot two curve of different program in same graphs

28 visualizaciones (últimos 30 días)
Chun Yin Lui
Chun Yin Lui el 6 de Abr. de 2021
Comentada: Chun Yin Lui el 10 de Abr. de 2021
I have improved the program, I want to compare the difference after the improvement. Can I combine the curve on this two program in same graphs?

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 6 de Abr. de 2021
Editada: KALYAN ACHARJYA el 6 de Abr. de 2021
Call two programs as function, see the following example
Code 1:
function code1(x)
y=exp(x);
plot(y);
hold on;
end
Code 2:
function code2(x)
y=log(x);
plot(y);
end
Main Script:
x=0:0.01:10;
code1(x);
code2(x);

Más respuestas (0)

Categorías

Más información sobre Modeling en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by