Azzera filtri
Azzera filtri

fscanf

1 visualizzazione (ultimi 30 giorni)
Tor Fredrik Hove
Tor Fredrik Hove il 28 Ott 2011
When i try to read a file, this one:
3.0000000e+000 4.0000000e+000 5.0000000e+000 4.0000000e+000 5.0000000e+000 6.0000000e+000 I get
>> fid=fopen('samematrix.mongiss', 'r')
fid =
4
>> fscanf(fid, '%f%f%f')
ans =
3
4
5
4
5
6
>>
I want to have rows made to columns as it says that fscanf will do.

Risposta accettata

Wayne King
Wayne King il 28 Ott 2011
Hi Tor,
fid=fopen('samematrix.mongiss', 'r')
data = fscanf(fid,'%f');
  1 Commento
Wayne King
Wayne King il 28 Ott 2011
It does return the row as a column

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Entering Commands in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by