using imported txt file in neural network

3 visualizaciones (últimos 30 días)
Reham Mahmoud
Reham Mahmoud el 22 de Sept. de 2020
Editada: Ameer Hamza el 22 de Sept. de 2020
i imported txt file data in workspace to copy from it and past in the editor as :
x=[120 240 480 960 1920 ];
that what i want; but actually the numbers appears with many zeros and separated by comma
x=[120.00000000, 240.00000000, 480.00000000, 960.00000000, 1920.00000000]
i want to paste numbers as in the txt file and separated by space as matrix not with comma

Respuestas (1)

Ameer Hamza
Ameer Hamza el 22 de Sept. de 2020
Editada: Ameer Hamza el 22 de Sept. de 2020
Use writematrix()
x=[120 240 480 960 1920];
writematrix(x, 'filename.txt', 'Delimiter', ' ');
In older versions
dlmwrite('filename.txt', x, ' ');

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by