Spacecraft Control Framework 1.0
Spacecraft Control Library
sc_jacobian.h
Go to the documentation of this file.
1/*
2 * sc_jacobian.h
3 * SCControl
4 *
5 * Created by Michael Paluszek on 6/19/08.
6 * Copyright 2008 Princeton Satellite Systems, Inc. All rights reserved.
7 *
8 */
9
12
13#ifndef __SC_JACOBIAN__
14#define __SC_JACOBIAN__
15
16#ifdef AS_OS_WINDOWS
17#include "matrixlib.h"
18#else
19#include <MatrixLib/MatrixLib.h>
20#endif
21
22
29ml_matrix jacobian( ml_matrix RHS( ml_matrix x, double t, void *context ), ml_matrix& x, double t, void *context );
30
31#endif
ml_matrix jacobian(ml_matrix RHS(ml_matrix x, double t, void *context), ml_matrix &x, double t, void *context)
Computes the Jacobian of a nonlinear system.
Definition: sc_jacobian.cc:20