码迷,mamicode.com
首页 > 其他好文 > 详细

For loop in MATLAB,R,C programming language.

时间:2020-05-15 00:18:09      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:学习   from   语言   相对   mat   for循环   show   时间   tla   

MATLAB和R都是向量式程序设计语言,有很多相通的地方,在学习中可以互相参考。

MATLAB中的for循环:

%Show from 1 to 100
for i = 1:100
    disp(i);
end

 R语言中的for循环:

#Show from 1 to 100.
for (i in 1:100) {
	cat(i,"\n");
}

 相对来说,更喜欢R语言for循环中的in,能清晰的表达向量式语言的内涵,MATLAB语言for循环中的=号,让初学者要花一段时间去理解。

接触的程序设计语言多了,越来越喜欢C语言:

	/* Show from 1 to 100. */
 	for(i=1;i<=100;i++)
		printf("%d\n",i);

 

For loop in MATLAB,R,C programming language.

标签:学习   from   语言   相对   mat   for循环   show   时间   tla   

原文地址:https://www.cnblogs.com/ninechapters/p/12892196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!