Python:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
A = np.array([1.8,2.7,3.3],dtype='float32') | |
print(type(A)) | |
A_bytes = A.tobytes('C') # Formato para C | |
#--- Escribir archivo --- | |
f = open("miArchivo.dat", "wb") | |
f.write(A) | |
f.close() |
C:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
float readfloat(FILE *f) { | |
float v; | |
fread((void*)(&v), sizeof(v), 1, f); | |
return v; | |
} | |
int main(int argc, char** argv) { | |
float A[3]; | |
FILE *file = fopen("miArchivo.dat", "rb"); | |
for(int i=0;i<3;i++){ | |
A[i] = readfloat(file); | |
} | |
fclose(file); | |
for(int i=0;i<3;i++) | |
printf("%f\n",A[i]); | |
return 0; | |
} |
No hay comentarios:
Publicar un comentario