摘要:
raw是cell型,raw(2,3)={'1'} 必须用大括号 阅读全文
摘要:
>> [~,~,raw] = xlsread('1.xls') raw = 3×4 cell 数组 [0.8125] [ 1] 'j' 'j' [0.8264] [NaN] '北jing' '广' [ NaN] [ 3] '北' [NaN] 若是字符类型: raw(find(cellfun(@(x) 阅读全文
摘要:
例如mat文件已有a,b,c,d变量的数据,分别更新a,b,c,d的数据后再装入mat文件先载入旧数据:load ***(mat文件名)[a1,b1,c1,d1]=textread('**.txt','%s%f%s%s')a=[a;a1]b=[b;b1]c=[c;c1]d=[d;d1]save *** a b c d function gen load 1 [a1,b1,c1,d1]=textr... 阅读全文