統計
MATLAB Answers
0 質問
4 回答
ランク
of 171,361
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Changing Solver for Global optimization
Try looking into Multistart (Global Optimization Toolbox). Or if you run your own code, parfor.
Changing Solver for Global optimization
Try looking into Multistart (Global Optimization Toolbox). Or if you run your own code, parfor.
約6年 前 | 1
| 採用済み
回答済み
to find value of unknown variable
You are trying to solve the equation symbolically and it takes a long time/fails. If you are okay with a numeric solution chan...
to find value of unknown variable
You are trying to solve the equation symbolically and it takes a long time/fails. If you are okay with a numeric solution chan...
約6年 前 | 0
| 採用済み
回答済み
How would I enter the Differential Equation y''+100y=2sin(4t)
Try like so: syms y(t) simplify( dsolve(diff(y,2)+100*y==2*sin(4*t),t) ) ans = sin(4*t)/42 + C1*cos(10*t) - C2*sin(10*t)
How would I enter the Differential Equation y''+100y=2sin(4t)
Try like so: syms y(t) simplify( dsolve(diff(y,2)+100*y==2*sin(4*t),t) ) ans = sin(4*t)/42 + C1*cos(10*t) - C2*sin(10*t)
6年以上 前 | 0
回答済み
Calculating the difference between a vector and time
Try this: A = [1 1 2 3]; A-[0,A(1:end-1)] ans = 1 0 1 1
Calculating the difference between a vector and time
Try this: A = [1 1 2 3]; A-[0,A(1:end-1)] ans = 1 0 1 1
6年以上 前 | 0


