3、ind(b);c=sum(v)7、编写实现表中功能的语句:ifand(a<1,b<=0.5)语句1elseifand(a<1,b>0.5)语句2elseifand(a>=1,b<=0.5)语句3elseifand(a>=1,b>0.5)语句4elsedisp('error')end8、编写脚本如下:A=2*rand(3)b=A>1c=A.*b;[i,j,v]=find(c);v9、编写脚本函数:A=101*rand(100,3)b=A>100;c=A.*b;[i,j,d]=find(c);d10、为节约空间,用5*5的矩阵来模拟100*100的矩阵:编写脚本函数如下:A=[0
4、2030;00000;08050;04050;04020]b=any(A);[i,j,v]=find(1-b);A(:,j)=[];B=A';c=any(B);[i,j,v]=find(1-c);B(:,j)=[];A=B'一、实验结果:1、输入脚本函数:x=0:pi/50:2*pi;k=[1265176101];x(k)=[];9Matlab程序设计实验报告figure(1)subplot(2,2,1)plot(x,sin(x)),gridonsubplot(2,2,2)plot(x,cos(x)),gridonsubplot(2,2,3)plot(x,tan(x)),gr
5、idonsubplot(2,2,4)plot(x,cot(x)),gridon2、分别利用title函数给图形加上标题,用text函数给坐标系中的建立文本对象,可将字符串放在图形的指定位置,用xlabel、ylabel函数添加x、y轴的标记,用legend函数给图形加上插图说明。写成脚本函数如下:x=0:0.1:2;y1=exp(x);figure(1);plot(x,y1);title('itx');xlabel('x');ylabel('ity=exp(x)');text(0.6,-0.28,'exp(x)rightarrow');legend('ity=exp(
6、x)');y2=log10(x);figure(2);plot(x,y2);title('itx');xlabel('x');ylabel('ity=log10(x)');text(0.6,-0.28,'log10(x)rightarrow');legend('ity=log10(x)');将脚本函数保存为xiti1.m,运行后产生图形如下:3、编写脚本函数如下:x=0:pi/40:4*pi;figure(1);subplot(2,1,1);plot(x,sec(x)),gridon;title('正割函数图形');ylabel('y'),xlabel('x');su
7、bplot(2,1,2);plot(x,csc(x)),gridon;title('余割函数图形');ylabel('y'),xlabel('x');4、编写脚本函数如下:x=(1:.1:10);y=exp(x+5)+x.^3;figure(1);semilogx(x,y,'k-');title('y=e^(^x^+^5^)+x.^3');%此处加‘^’表示是写在指数部分的字符ylabel('y'),xlabel('x');5、绘制多峰函数[x,y]=meshgrid(-3:.125:3);z=peak