How to plot graph from mat file?
28 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
KIEN WEI LAI
il 25 Mar 2020
Commentato: Steven Lord
il 25 Mar 2020
Hi everyone, I face a difficulty in plotting graph from mat file. I want to get the graph from the mat file but the graph did not pop out and get the result in command window as shown in the figure 1 below.
Figure 1
The figure 2 below is the setting for the code.
Anyone can help me? Thanks. This is the code I am using:
clc;
clear all;
close all;
s = load('lai3.mat');
plot(transpose(s.val))
Risposta accettata
Subhamoy Saha
il 25 Mar 2020
clc;
clear all;
close all;
s = load('lai3.mat');
x=s.lai3(:,1); % s is having a field named lai3
y=s.lai3(:,2);
plot(x,y)
4 Commenti
Subhamoy Saha
il 25 Mar 2020
Can you tell what was the problem because I'm getting plot with the sugested line of codes.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!