直接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