Home > freetb4matlab > odepkg > bvp4c.m

bvp4c

PURPOSE ^

%

SYNOPSIS ^

function sol = bvp4c(odefun,bcfun,solinit,options)

DESCRIPTION ^

% -*- texinfo -*-
% @deftypefn {Function File} {@var{A}} = bvp4c (@var{odefun}, @var{bcfun}, @var{solinit})
%
% Solves the first order system of non-linear differential equations defined by
% @var{odefun} with the boundary conditions defined in @var{bcfun}.
%
% The structure @var{solinit} defines the grid on which to compute the
% solution (@var{solinit.x}), and an initial guess for the solution (@var{solinit.y}).
% The output @var{sol} is also a structure with the following fields:
% @itemize
% @item  @var{sol.x} list of points where the solution is evaluated
% @item  @var{sol.y} solution evaluated at the points @var{sol.x}
% @item  @var{sol.yp} derivative of the solution evaluated at the
% points @var{sol.x}
% @item  @var{sol.solver} = 'bvp4c' for compatibility 
% @end itemize
% @seealso{odpkg}
% @end deftypefn

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003