开发者

error with not enough storage of running m.file

开发者 https://www.devze.com 2023-04-13 06:21 出处:网络
S = xlsread(\'DATASEQ.xlsx\',\'Train1\',\'A:I\'); X = xlsread(\'DATASEQ.xlsx\',\'Train1\',\'AB:AB\'); X_copy = X;
S = xlsread('DATASEQ.xlsx','Train1','A:I');
X = xlsread('DATASEQ.xlsx','Train1','AB:AB');
X_copy = X;
X(X_copy == 2) = 1; X(X_copy == 1) = 2; X(X_copy 开发者_开发知识库== 3) = 1;
Z = [S X];
xlswrite('ALPHA.xls',Z,'ALP_tra1');

S = xlsread('DATASEQ.xlsx','Test','A:I');
X = xlsread('DATASEQ.xlsx','Test','AB:AB');
X_copy = X;
X(X_copy == 2) = 1; X(X_copy == 1) = 2; X(X_copy == 3) = 1;
Z = [S X];
xlswrite('ALPHA.xls',Z,'ALP_tes');

S = xlsread('DATASEQ.xlsx','Train','A:I');
X = xlsread('DATASEQ.xlsx','Train','AB:AB');
Z = [S X];
xlswrite('ALPHA.xls',Z,'ALP_tra');

??? Error: Not enough storage is available to complete this operation.

Above is the code but it show the error message. May anyone can help me solve the problem?


It probably means you disk is full or that the data is too large to be stored in the remaining space. Although, it could just be MATLAB interpreting an Excel error thrown while saving the file as such.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号