You are on page 1of 1

%-- 28/03/2012 10:40 p.m.

--%
%-- 28/03/2012 10:41 p.m. --%
%-- 30/03/2012 09:58 a.m. --%
help xlsread
[NUM,TXT,RAW]=xlsread(modelo1 matlab.xls)
[NUM,TXT,RAW]=xlsread('modelo1 matlab.xls')
[NUM,TXT,RAW]=xlsread('modelo1 matlab.xlsx')
NUM
RAW
RAW(1)
RAW(:,1)
t=RAW(:,1);
u=RAW(:,2);
y=RAW(:,3)
plot(t,u,t,y)
length(t)
length(y)
length(u)
t
u
plot(t,u)
t
t(1)
t(2)
plot(u)
RAW
NUM
t=NUM(:,1);
u=NUM(:,2);
y=NUM(:,3);
plot(t,y,t,u)
clear all
columnA
t=columnA;
u=columnB;
y=columnC;
plot(t,y,t,u)
ident
%-- 18/04/2012 11:17 a.m. --%
%-- 18/04/2012 07:29 p.m. --%

You might also like