matlab循环怎么写

1. matlab里多个for循环的嵌套循环语句怎么写 不知道参数具体数值无法运行,这里给你指出编程错误 。
1
2
3
4
5
6
7
8
9
10
if s1>s2
for i=150:15:0;%应修改为i=150:-15:0
new1=AFFT(im1,i);
s10=AS(new1);
if abs(s10-s2)subplot(1,2,1),imshow(new1,[])
subplot(1,2,2),imshow(im2,[])
%这里你是否只需画一幅图?根据你的表达退出所有循环这里要加个break
end
end%最后仍缺个end
修改程序如下:
1
2
【matlab循环怎么写】3
4
5
6
7
8
9
10
11
if s1>s2
for i=150:-15:0
new1=AFFT(im1,i);
s10=AS(new1);
if abs(s10-s2)subplot(1,2,1),imshow(new1,[])
subplot(1,2,2),imshow(im2,[])
break
end
end
end
2. 用MATLAB怎么写这几道题1.分别用for和while循环结构编写程序,求出 第一题:function y=fuc2(i) y=0;if i==0 y=1; %无意义的输出else for j=1:i y=y+2^j; endend在command windows中输入>> fuc2(63)ans = 1.8447e+019第二题:j=0;for i=2000:3000if (mod(i,400)== 0)||((mod(i,4)==0)&&(mod(i,100)~= 0)) j=j+1;endendx=zeros(1,j);j=1;for i=2000:3000if (mod(i,400)== 0)||((mod(i,4)==0)&&(mod(i,100)~= 0)) x(1,j)=i; j=j+1;endend运行后,j的数值即为闰年的个数,x数组中的数即为各个闰年的年份第三题:syms asimplify(cos(4*a)-4*cos(2*a)+3)运行后,就可得到ans =8*sin(a)^4第四题:for i=1:0.01:10subplot(2,2,1); plot(i,sin(2*i)); hold ontitle('sin2x')subplot(2,2,2); plot(i,tan(i));ylim([-10,10]) ;hold ontitle('tanx')subplot(2,2,3); plot(i,log(i)); hold ontitle('lnx')subplot(2,2,4); plot(i,10^i); hold ontitle('10x')end运行后就可以得到图片如下:注意:以上4个程序最好都以M文件的形式写比较好. 。
3. matlab中for循环怎么写 在classpath(例如web-inf\classes)中放一个log4j.properties就可以了 。
例子如(这是是打在stdout中的):
log4j.rootLogger=INFO, CONSOLE
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.CONSOLE.Target=System.out
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOLE.layout.ConversionPattern=%d %-5p - [%t] %c{2} - %m%n
4. matlab中如何写循环 disp('Please enter the value:\n');
j=1;
b=input('Enter the value of b:\n');
while b(j)~='|'
j=j+1;
b(j)=input('Enter the value of b:\n'); % 输入数据当输入‘|’时结束输入
end
n=length(b(1:end-1));
b=b(1:end-1);
a=zeros(n,1); %建立输出矩阵
%使用矩阵思维 小数据和c语言思维没什么差别但是大量数据时会有明显差别
k=find(b>=90);
a(k)=5;
k1=find((b>=80).*(b<90)); %注这是数组点乘 .*
a(k1)=4;
k2=find((b>=70).*(b<80));
a(k2)=3.5;
k3=find((b>=60).*(b<70));
a(k3)=3;
k4=find(b<60);
a(k4)=0;
disp(a)
% 下面用的是c语言的思维
% for i=1:n
% if (b(i)>=90) % 几个分级判断,可以根据你的具体规定修改
% a(i)=5;
% elseif (b(i)<90 && b(i)>=80)
% a(i)=4;
% elseif (b(i)<80 && b(i)>=70)
% a(i)=3.5;
% elseif (b(i)<70 && b(i)>=60)
% a(i)=3.0;
% else
% a(i)=0;
% end
% end
5. matlab中两个变量的for循环怎么写 你大概是想要这个样子吧
y=zeros(10,10);
for i=1:10
for x=1:10
y(i,x)=3*x;
end
end
y=
3 6 9 12 15 18 21 24 27 30
3 6 9 12 15 18 21 24 27 30
3 6 9 12 15 18 21 24 27 30
3 6 9 12 15 18 21 24 27 30
3 6 9 12 15 18 21 24 27 30
3 6 9 12 15 18 21 24 27 30
3 6 9 12 15 18 21 24 27 30
3 6 9 12 15 18 21 24 27 30
3 6 9 12 15 18 21 24 27 30