首页 > 代码库 > 【matlab】:matlab中不断的出现计算过程怎么办

【matlab】:matlab中不断的出现计算过程怎么办

这个问题是会常常性出的。就是matlab中不断的出现计算。


关于这个问题,我们须要考虑的是自己是不是写错了,通常会出现以下两种可能的错误

1,关于计算的函数没有写分号 ;这样的是致命问题,假设函数不写分号,肯定是会出现错误的

2,关于赋值的函数错误
比方说我的一行赋值语句例如以下:
I((plot_x(i)-20):(plot_x(i)+20),(plot_y(i)-20):(plot_y(i)+20)) = 37,38,24;
直接对图像进行赋值
可是这样的并不能行。由于给三维数组赋值压根就不是这么赋值的
须要例如以下赋值才对,妄重视!

。!
I((plot_x(i)-20):(plot_x(i)+20),(plot_y(i)-20):(plot_y(i)+20),1) = 37; %绿色
I((plot_x(i)-20):(plot_x(i)+20),(plot_y(i)-20):(plot_y(i)+20),2) = 230;
I((plot_x(i)-20):(plot_x(i)+20),(plot_y(i)-20):(plot_y(i)+20),3) = 191;

最后要交给各位小伙伴一个好办法让这样的计算停下来,ctrl + c

<script type="text/javascript"> $(function () { $(‘pre.prettyprint code‘).each(function () { var lines = $(this).text().split(‘\n‘).length; var $numbering = $(‘
    ‘).addClass(‘pre-numbering‘).hide(); $(this).addClass(‘has-numbering‘).parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(‘
  • ‘).text(i)); }; $numbering.fadeIn(1700); }); }); </script>

【matlab】:matlab中不断的出现计算过程怎么办