MATLAB What Is a Data File and How Do You Generate It in MATLAB?

  • Thread starter Thread starter balogun
  • Start date Start date
  • Tags Tags
    Data File Matlab
AI Thread Summary
A data file in MATLAB is a structured way to store information that can be used as input or generated as output by a program. The discussion highlights the importance of specifying the type of data needed, as there are various formats such as ASCII, sound, images, or numerical arrays. The lack of clarity regarding the data type and structure makes it challenging to provide guidance. To generate a data file in MATLAB, one can use the fopen function to create and write to a file, with the syntax FID_out=fopen('filename.dat', 'w'). For further understanding, resources such as tutorials can provide additional context on input/output operations in MATLAB.
balogun
Messages
14
Reaction score
0

Homework Statement



I have a retake in MATLAB and in my briefing they said i will have to generate a data file and analyse it.Can someone please tell me what a data file is and how you generate it.
I have used the help function in MATLAB but did not find it very useful .
Thanks in advance.

Homework Equations





The Attempt at a Solution


Used help function but not useful.
 
Physics news on Phys.org
Your question is so hopelessly vague that no one here will be able to help you with it. MATLAB includes many functions that can be used to generate data sets, but you've given us absolutely no information on the kind of data you want. It also includes functions which can be used to write arrays out to files on the disk.

- Warren
 
...

Sorry didn't know there were many different kinds of datafiles.I don't really know the type of datafile his going to give so i thought there should be some kind of general method.But from the last coursework i was given he asked for an ascii datafile.
 
Is the data supposed to be a sound, or a picture, or a one-dimensional random signal? What's the distribution supposed to look like? What's the meaning of the data? Is it supposed to be one column in a text file or twelve? One point or ten billion points? Floating-point or fixed-point or integers?

You've given us no information at all about how to help you. It's as if you went into a library and told the librarian you were looking for "a book."

- Warren
 
As chroot has mentioned, it would be helpful if you described an example.

A data file , as you have described it, is information that can be 'used by' (input) or 'generated by' (output) a computer program.

Since you want to generate a data file, you are interested in input/output syntax. That's true for any computer language, however for MATLAB it may begin with something like ---> FID_out=fopen('test_io.dat",'w');
Here's http://ocw.mit.edu/NR/rdonlyres/025D2855-5E98-42A6-A415-B408855187CE/0/tutorial05.pdf that illustrates this concept.
 
Last edited by a moderator:

Similar threads

Replies
1
Views
2K
Replies
5
Views
2K
Replies
2
Views
3K
Replies
1
Views
2K
Replies
2
Views
1K
Back
Top