fprintf(stderr,"\nDefining a sinusoïd of 32 uchars vector\n\nProperties:\n");
//We define the properties of an array of type unsigned char (UIN8) with undef format (i.e. the user use it as he wants), of one dimension (vector) of 32 values.
vector.def_array('UIN8','NDEF',1,32);
//The property .dims have to be freed.
//The property .dims (list of all dimensions) has been allocated.
//Be careful the .data memory is not allocated ! This is usefull if you want to associate the data to your own memory.
//We display the properties
...
...
@@ -57,7 +57,7 @@ int main(int argc, char **argv){
//We save the value as a blc file that we will be able to reread