Robotran C Documentation
read_files.h
Go to the documentation of this file.
1 
7 #ifndef __READ_FILES_H_
8 #define __READ_FILES_H_
9 
10 #include <stdio.h>
11 
26 int mbs_getlinesize(FILE *stream);
27 
48 int get_file_nb_lines_col(FILE *fp, int *n_line, int *max_width);
49 #endif
norm_dvec_1
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
mbs_msg
void mbs_msg(const char *msg,...)
Send a message.
Definition: mbs_message.c:87
norm_vector
double norm_vector(double *v, int n)
Definition: norm.c:13
normalize_dvec_0
void normalize_dvec_0(double *vec, double *vn, int l_v)
Compute the normalize vector with starting with index 0.
Definition: norm.c:79
mbs_getlinesize
int mbs_getlinesize(FILE *stream)
Compute the line length.
Definition: read_files.c:13
norminf_vector
double norminf_vector(double *v, int n)
Definition: norm.c:19
mbs_warning_msg
void mbs_warning_msg(const char *msg,...)
Send a warning message.
Definition: mbs_message.c:100
get_file_nb_lines_col
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
mbs_1D_array.h
mbs_getlinesize
int mbs_getlinesize(FILE *stream)
Compute the line length.
Definition: read_files.c:13
normalize
void normalize(double v[4], double vn[4])
DEPRECATED: See normalize_dvec_1()
Definition: norm.c:33
read_files.h
Declare reading text file related functions.
get_file_nb_lines_col
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
mbs_message.h
norm
double norm(double v[4])
DEPRECATED: See norm_dvec_1().
Definition: norm.c:27
norminf_vector_1
double norminf_vector_1(double *v, int n)
Compute the maximum of a vector.
Definition: norm.c:38
normalize_dvec_1
void normalize_dvec_1(double *vec, double *vn, int l_v)
Compute the normalize vector with first index is 1.
Definition: norm.c:92
norm_dvec_0
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