最近经常有同学遇到一个问题,如文末图片所示:
问题报错:The current directory 'd\matlab\...\bin' is reserved for MATLAB files,
Please change your current directory to a writable directory outsilde o ...……
此外,Mathtpye公式编辑器中漂亮的字体,是Times New Roman字体的斜体格式
可以这样设置
xlabel('\itx','Fontname','Times New Roman')
搜索matlab help中的 text properties
\bf — Bold font
\it — Itali ...……
没有时间详细写了,直接贴代码吧。
%%%%%函数
function =zzhKmean(x,num)nData=size(x,1);index=zeros(1,nData);center=zeros(num,2);for n=1:nData index(n)=ceil(num*rand(1));endjud=1;while jud==1 ju ...……