importing a file in the working directory

63 views (last 30 days)
GAURAV HAVELIA
GAURAV HAVELIA on 3 May 2011
Answered: Adithya on 30 Mar 2023
I am new to MATLAB.I want to import a file in the working directory . How do i do that ? .

Answers (1)

Adithya
Adithya on 30 Mar 2023
To import a file in the working directory in MATLAB, you can use the readtable function. This function reads the data from a tabular data file (like a CSV file) and creates a table variable in MATLAB.
Here is an example of how to use the readtable function to import a CSV file called "data.csv" in the current working directory:
data = readtable('data.csv');
This will create a variable called "data" in your workspace that contains the contents of the "data.csv" file. You can then use this variable to perform further analysis on the data.
Note that if your file is not in the current working directory, you will need to specify the full path to the file in the readtable function. For example:
data = readtable('C:\Users\JohnDoe\Documents\data.csv');
This will import the "data.csv" file located in the "Documents" folder of the user "JohnDoe".
Here are some examples of functions you can use to read different types of files in MATLAB:
To read an image file (such as a JPEG or PNG file), you can use the imread function. For example:
img = imread('myimage.jpg');
To read a text file, you can use the textread function. For example:
txt = textread('mytextfile.txt', '%s');
To read a binary file (such as a binary data file), you can use the fread function. For example:
fid = fopen('mydata.bin', 'r');
data = fread(fid, 'int32');
fclose(fid);

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!