|
48 | 48 | % t : numeric
|
49 | 49 | % The time at which $f$ is evaluated.
|
50 | 50 | % y : numeric(:, 1) or numeric(:, :)
|
51 |
| - % The state at which $f$ is evaluated. If :attr:`Vectorized` is ``'on'``, it can be a matrix where each |
52 |
| - % column is a state. |
| 51 | + % The state at which $f$ is evaluated. If :attr:`otp.RHS.Vectorized` is ``'on'``, it can be a matrix where |
| 52 | + % each column is a state. |
53 | 53 | %
|
54 | 54 | % Returns
|
55 | 55 | % -------
|
|
255 | 255 | % $\sum_{j,k} \frac{\partial^2 f_i(t, y; p)}{\partial y_j \partial y_k} u_j v_k$.
|
256 | 256 | HessianVectorProduct
|
257 | 257 |
|
258 |
| - % The action of a vector on the partial derivative of :attr:`JacobianAdjointVectorProduct` with respect to $y$. |
| 258 | + % The action of a vector on the partial derivative of :attr:`otp.RHS.JacobianAdjointVectorProduct` with respect |
| 259 | + % to $y$. |
259 | 260 | %
|
260 | 261 | % If set, it is a function handle with the following signature:
|
261 | 262 | %
|
|
277 | 278 | end
|
278 | 279 |
|
279 | 280 | properties (Dependent)
|
280 |
| - % A dependent property which returns :attr:`Jacobian` if it is a matrix and ``[]`` if it is a function handle. |
| 281 | + % A dependent property which returns :attr:`otp.RHS.Jacobian` if it is a matrix and ``[]`` if it is a function |
| 282 | + % handle. |
281 | 283 | JacobianMatrix
|
282 | 284 |
|
283 |
| - % A dependent property which wraps :attr:`Jacobian` in a function handle if necessary. |
| 285 | + % A dependent property which wraps :attr:`otp.RHS.Jacobian` in a function handle if necessary. |
284 | 286 | JacobianFunction
|
285 | 287 |
|
286 |
| - % A dependent property which returns :attr:`Mass` if it is a matrix and ``[]`` if it is a function handle. |
| 288 | + % A dependent property which returns :attr:`otp.RHS.Mass` if it is a matrix and ``[]`` if it is a function |
| 289 | + % handle. |
287 | 290 | MassMatrix
|
288 | 291 |
|
289 |
| - % A dependent property which wraps :attr:`Mass` in a function handle if necessary. |
| 292 | + % A dependent property which wraps :attr:`otp.RHS.Mass` in a function handle if necessary. |
290 | 293 | MassFunction
|
291 | 294 | end
|
292 | 295 |
|
|
304 | 307 | %
|
305 | 308 | % Warning
|
306 | 309 | % -------
|
307 |
| - % In Octave, the value for :attr:`Vectorized` is ignored because it is not used by built in solvers and |
308 |
| - % causes an error for ``ode15s``. |
| 310 | + % In Octave, the value for :attr:`otp.RHS.Vectorized` is ignored because it is not used by built in solvers |
| 311 | + % and causes an error for ``ode15s``. |
309 | 312 |
|
310 | 313 | obj.F = F;
|
311 | 314 | if mod(nargin, 2) == 0
|
|
0 commit comments