#include <assert.h>
#include <string.h>
#include "../csm/csm_all.h"
#include <options/options.h>
#include <json-c/json.h>
#include <json-c/json_object_private.h>
Go to the source code of this file.
Functions | |
int | jo_is_numeric_array (JO jo) |
int | jo_is_numeric_matrix (JO jo) |
void | jo_write_as_cell_array (JO jo, FILE *out) |
void | jo_write_as_column_vector (JO jo, FILE *out) |
void | jo_write_as_matlab (JO jo, FILE *out) |
void | jo_write_as_matlab_object (JO jo, FILE *out) |
void | jo_write_as_matrix (JO jo, FILE *out) |
int | main (int argc, const char *argv[]) |
Variables | |
const char * | banner = " \n" |
int jo_is_numeric_array | ( | JO | jo | ) |
Definition at line 214 of file json2matlab.c.
int jo_is_numeric_matrix | ( | JO | jo | ) |
Definition at line 195 of file json2matlab.c.
void jo_write_as_cell_array | ( | JO | jo, |
FILE * | out | ||
) |
Definition at line 270 of file json2matlab.c.
void jo_write_as_column_vector | ( | JO | jo, |
FILE * | out | ||
) |
Definition at line 257 of file json2matlab.c.
void jo_write_as_matlab | ( | JO | jo, |
FILE * | out | ||
) |
Definition at line 115 of file json2matlab.c.
void jo_write_as_matlab_object | ( | JO | jo, |
FILE * | out | ||
) |
Definition at line 169 of file json2matlab.c.
void jo_write_as_matrix | ( | JO | jo, |
FILE * | out | ||
) |
Definition at line 240 of file json2matlab.c.
int main | ( | int | argc, |
const char * | argv[] | ||
) |
Definition at line 43 of file json2matlab.c.
const char* banner = " \n" |
Definition at line 20 of file json2matlab.c.