|
Robotran C Documentation
|
Go to the documentation of this file.
7 #ifndef __READ_FILES_H_
8 #define __READ_FILES_H_
double norm_dvec_1(double *vec, int l_v)
compute the norm of a [l_v sized] vector of doubles, starting with index 1
Definition: norm.c:67
void mbs_msg(const char *msg,...)
Send a message.
Definition: mbs_message.c:87
double norm_vector(double *v, int n)
Definition: norm.c:13
void normalize_dvec_0(double *vec, double *vn, int l_v)
Compute the normalize vector with starting with index 0.
Definition: norm.c:79
int mbs_getlinesize(FILE *stream)
Compute the line length.
Definition: read_files.c:13
double norminf_vector(double *v, int n)
Definition: norm.c:19
void mbs_warning_msg(const char *msg,...)
Send a warning message.
Definition: mbs_message.c:100
int get_file_nb_lines_col(FILE *fp, int *n_line, int *max_width)
Return the number of line and the max line width in remainder of the file.
Definition: read_files.c:32
int mbs_getlinesize(FILE *stream)
Compute the line length.
Definition: read_files.c:13
void normalize(double v[4], double vn[4])
DEPRECATED: See normalize_dvec_1()
Definition: norm.c:33
Declare reading text file related functions.
int get_file_nb_lines_col(FILE *fp, int *n_line, int *max_width)
Return the number of line and the max line width in remainder of the file.
Definition: read_files.c:32
double norm(double v[4])
DEPRECATED: See norm_dvec_1().
Definition: norm.c:27
double norminf_vector_1(double *v, int n)
Compute the maximum of a vector.
Definition: norm.c:38
void normalize_dvec_1(double *vec, double *vn, int l_v)
Compute the normalize vector with first index is 1.
Definition: norm.c:92
double norm_dvec_0(double *vec, int l_v)
compute the norm of a [l_v sized] vector of doubles, starting with index 0
Definition: norm.c:55