I need to solve an equation which is dependent on another equation and get the required plot. How can i do that?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
SAONI BANERJEE
el 13 de Jun. de 2019
Respondida: Ana Soph
el 9 de Mayo de 2020
I need to code in matlab
1 comentario
Respuesta aceptada
James Browne
el 15 de Jun. de 2019
Editada: James Browne
el 15 de Jun. de 2019
Solve equation 1, store result in a variable, use said variable as input to equation 2? Here is a quick example~
x = 0:0.1:5;
y1 = 2*x + 3;
y2 = 3*y1 - 2;
plot(x,y2)
title('y1 = f(x) y2 = f(y1)')
legend('y2','location','southeast')
xlabel('inputs')
ylabel('outputs')
Hope that helps?
2 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Mathematics and Optimization 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!