其他分享
首页 > 其他分享> > matlab导入excel数据

matlab导入excel数据

作者:互联网

 直接matlab点开excel文件,选中要导入的

 

 选择生成实时脚本

结果如下:

 

%导入电子表格中的数据
%用于从以下电子表格导入数据的脚本:
%  工作簿: C:\Users\86178\Desktop\新型标定论文\calculate_location_error.xlsx
  工作表: Sheet1
%由 MATLAB 于 2021-11-29 13:47:04 自动生成
%设置导入选项
clc
clear
opts = spreadsheetImportOptions("NumVariables", 1);

% 指定工作表和范围
opts.Sheet = "Sheet1";
opts.DataRange = "G1:G16";

% 指定列名称和类型
opts.VariableNames = "VarName7";
opts.SelectedVariableNames = "VarName7";
opts.VariableTypes = "double";

% 导入数据
calculatelocationerror1 = readtable("C:\Users\86178\Desktop\新型标定论文\calculate_location_error.xlsx", opts, "UseExcel", false)


%清除临时变量
clear opts

标签:Users,excel,Desktop,导入,matlab,电子表格,opts,86178
来源: https://blog.csdn.net/weixin_51229250/article/details/121608176