I want to plot a graph as shown below, For that non linear system, i have written a Matlab script but i can't really identify how do i plot such graph.

조회 수: 1 (최근 30일)
%% WaterTank MATLAB Script
syms h(t)
Dh = diff(h);
A = 20; a = 2; b = 5; U = 0:0.1:1.0; V = 1;
watertank = 1*diff(h,t) - (1/A)*b.*V - (1/A)*a*sqrt(h) == 0;
soln = dsolve(watertank, h(0) == 0, Dh(0) == 0);
figure(1), clf
fplot(soln)
figure(2), clf
plot(U,Y)
IMG_20190423_121652.jpg
Zulauf means Inlet (denoted in the script as 'U')
Fullstand means Height of the tank (denoted in the script as 'h')

채택된 답변

Naman Bhaia
Naman Bhaia 2019년 5월 2일
Hello Yash,
If issue you are facing is in plotting the graphs in one figure, you can use the hold command while plotting.
And, to add a title to the graph and label the axes, you can visit this documentation page and see if it helps.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by