Amit kumar
Followers: 0 Following: 0
統計
MATLAB Answers
2 質問
0 回答
ランク
of 153,912
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
I want to solve a simple "y=mx+c" with initial condition to find value of "m" and "c" but i am getting error by using following code. Any idea to tackle this kind of problem?
clc clear all close all syms a b x y=a*x+b cond1=y(0)== 1 cond2= y(1)== 0 conds=[cond1 cond2] y_1=solve(y,conds)
1年以上 前 | 1 件の回答 | 0
1
回答質問
I am facing error while solving two 2nd order differential equation in which boundary condition are dependent to each other. Any idea where I am doing wrong??
clc clear all; close all; syms psi_1(z) syms psi_2(z) K1=1 K2=1 K3=1 Dpsi_1 = diff(psi_1); Dpsi_2 = diff(psi_2); %%%...
2年弱 前 | 2 件の回答 | 0