統計
MATLAB Answers
6 質問
0 回答
ランク
of 171,460
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
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
