Functions
Detailed Description
The apop_*_print functions will print to screen, text file, or database, depending on how you set apop_opts.output_type. The apop_*_show functions print only to screen, and are basically just a convenience shell to the corresponding apop_*_print function.
Function Documentation
| void apop_data_print |
( |
const apop_data * |
data, |
|
|
Output_declares |
| |
|
) |
| | |
Print an apop_data set to a file, the database, or the screen, as determined by the apop_opts.output_delimiter.
- This function uses the Designated initializers syntax for inputs.
- This function respects the global
apop_opts.output_type and apop_opts.output_pipe variables; see the legible output section of the outline for details.
| void apop_matrix_print |
( |
const gsl_matrix * |
data, |
|
|
Output_declares |
| |
|
) |
| | |
Print a matrix in float format. You may want to set apop_opts.output_delimiter.
- This function uses the Designated initializers syntax for inputs.
- This function respects the global
apop_opts.output_type and apop_opts.output_pipe variables; see the legible output section of the outline for details.
| void apop_matrix_show |
( |
const gsl_matrix * |
data |
) |
|
Dump a gsl_matrix to the screen. You may want to set apop_opts.output_delimiter.
- This function uses the Designated initializers syntax for inputs.
- This function respects the global
apop_opts.output_type and apop_opts.output_pipe variables; see the legible output section of the outline for details.
| void apop_vector_print |
( |
gsl_vector * |
data, |
|
|
Output_declares |
| |
|
) |
| | |
Print a vector in float format. You may want to set apop_opts.output_delimiter.
- This function uses the Designated initializers syntax for inputs.
- This function respects the global
apop_opts.output_type and apop_opts.output_pipe variables; see the legible output section of the outline for details.
| void apop_vector_show |
( |
const gsl_vector * |
data |
) |
|
Dump a gsl_vector to the screen. You may want to set apop_opts.output_delimiter.
- This function uses the Designated initializers syntax for inputs.
- This function respects the global
apop_opts.output_type and apop_opts.output_pipe variables; see the legible output section of the outline for details.
Autogenerated by doxygen on 23 Nov 2009.