How do you set up a boundary value problem?
2 ビュー (過去 30 日間)
古いコメントを表示
I posted this question a couple days ago, but I recieved no response:
basically the part that I am havig difficulty is this line:
bcond= @(ya, yb) [ya(1); yb(1)+.5570]
this is where you set up the boundary conditions, but someone please explain this to me? what are these supposed to be exactly? FYI: this equation was modeling the deflection of a beam (the ends are zero)
0 件のコメント
回答 (1 件)
Fangjun Jiang
2011 年 8 月 9 日
It is called anonymous function. It is the same as:
function bcond=MyFunction(ya,yb)
bcond=[ya(1);yb(1)+.5570];
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!