What is the mean?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
dmfwlansejr
il 21 Lug 2021
Risposto: James Tursa
il 21 Lug 2021
fileid = fopen('File.txt','r'); <---File.txt is Ascii File
B = fread(fileid,[21 inf]);
B = B';
=> What is the (B = B';) meading?
0 Commenti
Risposta accettata
James Tursa
il 21 Lug 2021
B' is the complex conjugate transpose of B. If B is real, then it is equivalent to just the tranpose and the assignment simply transposes B.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Number Theory 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!