very simple. this is part of my code for reading complex signal, but mind
that i have separated real and imaginary values, there is a way to read in
an array of complex i suppose.
file = fopen(read_path, 'r');
% fseek(file, 1940000*8, 'bof');
data = fread(file, 'single', 'l');
fclose(file);
i_data = data(1:2:length(data));
q_data = -1*data(2:2:length(data));
On Fri, Oct 18, 2013 at 6:20 AM, JPL <[email protected]> wrote:
> Hello,
>
> I used the File Sink block to save some data.
> they are
> "Byte", pink color
> and
> "complex", light blue color.
>
> How can I get something, like *.m script, to open those types of files on
> Matlab?
>
> Thanks a lot.
>
> _______________________________________________
> Discuss-gnuradio mailing list
> [email protected]
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>
>
--
Nemanja Savić
_______________________________________________
Discuss-gnuradio mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio