peaks; axis tight %Set the axis limits to equal the range of the data axis square axis 'auto x' %x轴坐标上下限自动调整 axis off %Plot a surface without displaying the axes lines and background. set(gca,'Visible','off'); %消除坐标轴,显示范围的大小没有改变,同上句 %更多特性
Matlab提供了强大的函数库供用户调用,但也支持用户自定义函数.本文使用了范德堡大学教授Akos Ledeczi授课中的样例来一步步说明怎样在Matlab中自定义函数. 首先,在command window中输入edit命令.開始编辑函数.本函数实现的是随机生成一个3行4列的矩阵.该矩阵的元素取值范围在0-1之间. function myRand a = rand(3,4) end 当中,function和end是keyword,function表示该文件是一个函数,end表示函数体的结束.在