How to import .mat file in MATLAB?
63 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Bidyarani
am 19 Jan. 2023
Kommentiert: Bidyarani
am 20 Jan. 2023
i have been trying to import a data in .mat format and after i select the file, "import wizard" window pops up which is shown below. When i click finish button but it shows a blank window. I am not able to import the .mat file. Can someone help me out? thank you in advance.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1268480/image.jpeg)
0 Kommentare
Akzeptierte Antwort
Kunal Kandhari
am 19 Jan. 2023
Hi Bidyarani,
You can make use of load function to read the .mat file into MATLAB.
Below is the sample code for that:
filename = 'test.mat';
load(filename)
Hope this helps!
3 Kommentare
Kunal Kandhari
am 20 Jan. 2023
Can you please try this out:
In command window, run this command:
clear
it will clear your workspace and then run the following code:
myVars = {'d_users','cellular_users','pathloss_users','pathloss_cellular'};
load(filename,myVars{:})
disp(cellular_users)
And let me know the output
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!