filmov
tv
HOW to browse text files in MATLAB and plot the graphs ?

Показать описание
IN THIS VIDEO YOU WILL GET:
****************************************************
HOW to browse text files in MATLAB and plot the graphs ?
***************************************************************
code:
////////////////////////////////////////////////////////////////////////////////////
clc
clear all
close all
[filename1 pathname1]=uigetfile({'*.out'},'file selector')
fullpathname1=strcat(pathname1,filename1)
text1=textread(fullpathname1);
t=text1(:,1)
u=text1(:,2)
u1=text1(:,3)
plot(t,u,'r',t,u1,'k')
****************************************************
HOW to browse text files in MATLAB and plot the graphs ?
***************************************************************
code:
////////////////////////////////////////////////////////////////////////////////////
clc
clear all
close all
[filename1 pathname1]=uigetfile({'*.out'},'file selector')
fullpathname1=strcat(pathname1,filename1)
text1=textread(fullpathname1);
t=text1(:,1)
u=text1(:,2)
u1=text1(:,3)
plot(t,u,'r',t,u1,'k')