无法加载产品文件
조회 수: 9 (최근 30일)
이전 댓글 표시
无法加载产品文件,产品文件必须与输入文件位于同一文件夹中。
댓글 수: 1
Dyuman Joshi
2025년 6월 15일
Approximate translation -
Title - "Unable to load product file"
Description - "Unable to load product file, product file must be in the same folder as input file."
Tags - "Install".
@学孜, You can refer to this thread -
답변 (1개)
若琳
2025년 7월 25일
1.确保文件在同一个文
件夹中
将产品文件.mat和输入文件.dat放在同一文件夹中
2.设置MATLAB工作路径为文件所在文件夹
3.手动指定文件路径
% 获取当前运行脚本所在的文件夹路径
scriptDir = fileparts(mfilename('fullpath'));
% 切换到该路径
cd(scriptDir);
% 现在可以安全加载文件(示例)
load('产品文件.mat'); % 加载产品文件
inputData = load('输入文件.dat'); % 加载输入文件
%3.-----------
% 直接使用绝对路径加载
productData = load('C:\你的文件夹\产品文件.mat');
inputData = load('C:\你的文件夹\输入文件.dat');
댓글 수: 0
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!