easy question here
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am new to Matlab. What is the difference between 'char' and '*char' when you use fread?
Thanks.
0 Commenti
Risposte (1)
Jan
il 25 Feb 2011
A = fread(FID, 1, 'char');
B = fread(FID, 1, '*char');
Now A is a DOUBLE, and B is a CHAR. '*char' is equivalent to 'char=>char', as explained in "help fread".
0 Commenti
Vedere anche
Categorie
Scopri di più su Large Files and Big Data in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!