> Hallo,
> ich habe eine Text-Datei, die Zahlen mit Komma enthält.
> Wenn ich diese Datei mit Load-Befehl öffne, Matlab betrachtet jede Zahl
> zwei
> Zahlen eine vor u. die Zweite nach dem Komma.
> meine Frage wie kann ich diese Datei richtig öffnen
Hi,
usually this is an english speaking (writing?) news group.
If this is just one file you want to load: open it in some editor and to a
replace of "," by ".". If you happen to have more of these, write a function
where you open the file (fopen), read it's content (fread), do a replace
(strrep) and save the file again (fwrite).
Titus