read text file to get complex number
Afficher commentaires plus anciens
Hi all, I have a data of vector from 1:1000 saved in REAL_I.text file another vector from 1:1000 saved in IMAG_Q.text file. how can i read them to get complex_IQ=real + j*imag. (vector numbers like this 5e-011 0.000225206230). thanks in advance
Réponses (1)
John D'Errico
le 3 Mar 2024
Modifié(e) : John D'Errico
le 3 Mar 2024
Read the files in as two vectors. There are many tools that can read a text file.
Then add them, multiplying the second by sqrt(-1).
r = rand(1,3)
im = rand(1,3)
r + sqrt(-1)*im
Catégories
En savoir plus sur Standard File Formats dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!