无法加载产品文件
23 ビュー (過去 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!