Feeds
질문
Solving Implicit differential differential equations.
I have been posed with the following problem of chemical engineering: dX/dz = (a*((1-X)/(1+X))^2)/Uo ...
대략 9년 전 | 답변 수: 3 | 0
3
답변질문
How can I convert the output of 'symbolic integration' into decimal?
syms x; f = (1-x)^-1; rsums(f,0,0.8); a= int(f,0,0.8); volume = 0.5*a/0.3; display('The volume of the reactor f...
거의 10년 전 | 답변 수: 1 | 0
1
답변질문
Is it possible to use ODE45 to solve a second order differential equation where we know y1(a) and y1(b)?
ODE45 can be used to solve 2nd order differential equations when the initial conditions are known. Can it be used to solve a 2nd...
거의 10년 전 | 답변 수: 0 | 0
0
답변질문
Can I plot semilogx, semilogy, loglog plots simultaneously by writing in code in a single m file?
I have the following code in an m file : x = linspace(0,10); y=x.^3; semilogx(x,y); semilogy(x,y); loglog(x,y);...
거의 10년 전 | 답변 수: 1 | 0
1
답변질문
Want an explanation to what this code does? "ax2h = get(ax2(1),'Children');"
I am writing a code to merge two plots and what I found on matlab community is the following code: fh1 = open('Plot1.fig');...
거의 10년 전 | 답변 수: 1 | 0
1
답변질문
How do you write x^2 = 2t in matlab? Or can we write x = (+-) sqrt(2*t)?
I want to plot two non-linear equations. One of them looks like this. How do I write the same in matlab?
거의 10년 전 | 답변 수: 1 | 0
