#pragma once
void alloc_vec(float **m, int R);
void rand_vec(float *m, int R);
void zero_vec(float *m, int R);
void free_vec(float *m);