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

조회 수: 1 (최근 30일)
I need to code in matlab

채택된 답변

James Browne
James Browne 2019년 6월 15일
편집: James Browne 2019년 6월 15일
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
SAONI BANERJEE
SAONI BANERJEE 2019년 6월 15일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Ana Soph
Ana Soph 2020년 5월 9일
Hi, i need something like that

카테고리

Help CenterFile Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by