matlab程序只能运行一次。

clc;
clear all;
feature('DefaultCharacterSet', 'UTF8')
B = importdata('E:\IC刷卡数据-2015ic数据\stop.csv')
程序第一次可以正常运行(我确定文件路径是没有问题的),然后再点一次运行就会报错,本人小白,求问需要怎么解决呀

 採用された回答

tamzkau
tamzkau 2023 年 5 月 17 日

0 投票

把stop.csv放到当前目录,再运行:
clc;
clear all;
feature('DefaultCharacterSet', 'UTF8')
B = importdata('./stop.csv')

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

質問済み:

2023 年 5 月 17 日

回答済み:

2023 年 5 月 17 日

Community Treasure Hunt

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

Start Hunting!