error reading using xlsread
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
sri satya ravi
el 12 de Abr. de 2016
Editada: Azzi Abdelmalek
el 12 de Abr. de 2016
I am trying to run this code and i am getting an error 'Undefined operator '.*' for input arguments of type 'cell'. All i am trying to do is vector multiplication of the two columns of data which is imported from the file.
clc
clear all
[num,txt,Rawdata] = xlsread ('MAE 525 HW5 Soln.xlsx');
CO2_meas = Rawdata (16:end,2);
CO_meas = Rawdata (16:end,3);
result = CO2_meas.* CO_meas
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 12 de Abr. de 2016
[num,txt,Rawdata] = xlsread ('MAE 525 HW5 Soln.xlsx');
CO2_meas = num(16:end,2);
CO_meas = num(16:end,3);
result = CO2_meas.* CO_meas
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import from MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!