Filter löschen
Filter löschen

How do you set up a boundary value problem?

3 Ansichten (letzte 30 Tage)
Robin
Robin am 9 Aug. 2011
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)

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 9 Aug. 2011
It is called anonymous function. It is the same as:
function bcond=MyFunction(ya,yb)
bcond=[ya(1);yb(1)+.5570];

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by