Thread: dat files with visual C++

  1. #1
    Registered User
    Join Date
    May 2009
    Posts
    1

    dat files with visual C++

    haai i am trying to work on a channel acquisition module, there were some dat files created in visual c++giving some noise n freq offset parameters, wat are the dat files that are created?? wat does the length(quad.dat) give??
    the following is the beginnning of the code..
    load quad_i.dat;
    load quad_q.dat;

    NCO_size=2048;
    NCO_scale=((2^15)-1)/sqrt(2);
    fs=460800;
    quadop=zeros(1,length(quad_i));
    quadop=quad_i+j*quad_q;
    Last edited by Salem; 05-20-2009 at 10:25 PM. Reason: Split from 7 YEAR old thread, read the rules

  2. #2
    Registered User
    Join Date
    May 2007
    Posts
    147
    Code:
    load quad_i.dat;
    load quad_q.dat;
    What language is that? Is this what's in the dat file or the source code?

    wat does the length(quad.dat) give??
    Did you mean length(quad_i) ?

    I'm not familiar with a function length from standard libraries.


    Dat files are not 'standardized' as a format - they are a generic extension with little definition (and an old idea now).

    dat files could contain binary data, text, mixtures - anything. Only the application that created it would 'understand' it - and, of course, you'd need documentation or reverse engineering of source (or nefarious means) to figure out what's really in it.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C++ std routines
    By siavoshkc in forum C++ Programming
    Replies: 33
    Last Post: 07-28-2006, 12:13 AM
  2. Functions in C
    By shoobsie in forum C Programming
    Replies: 15
    Last Post: 11-17-2005, 01:47 PM
  3. question about .net to 6.0 change causing errors
    By jverkoey in forum C++ Programming
    Replies: 17
    Last Post: 03-23-2004, 10:45 AM
  4. Visual C++ Help Files
    By sndhearn in forum C++ Programming
    Replies: 2
    Last Post: 11-26-2002, 01:19 AM
  5. Header files in visual studio
    By Shadow12345 in forum C++ Programming
    Replies: 1
    Last Post: 03-18-2002, 11:20 AM