フィルターのクリア

error reading using xlsread

2 ビュー (過去 30 日間)
sri satya ravi
sri satya ravi 2016 年 4 月 12 日
編集済み: Azzi Abdelmalek 2016 年 4 月 12 日
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

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 4 月 12 日
[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 件)

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by