I need to solve an equation which is dependent on another equation and get the required plot. How can i do that?

2 vues (au cours des 30 derniers jours)
I need to code in matlab

Réponse acceptée

James Browne
James Browne le 15 Juin 2019
Modifié(e) : James Browne le 15 Juin 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 commentaires
SAONI BANERJEE
SAONI BANERJEE le 15 Juin 2019
Here I need to solve equation 16 which is dependent on equation 15 and del (0) is a fitting parameter. I need to get a plot.
So I need the value of x axis and y axis.

Connectez-vous pour commenter.

Plus de réponses (1)

Ana Soph
Ana Soph le 9 Mai 2020
Hi, i need something like that

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by