• And the foreground program mainly carried out the digital calculation of inside loop and outside loop.

    前台程序主要进行内外两环数值计算

    youdao

  • The NNC is composed of an inside loop controller and an outside loop one in accordance with the two time scale.

    基于分离原则,神经控制器被设计为内环控制器控制器两个部分。

    youdao

  • The inside loop is used to overcome fuel disturbance quickly, and the outside loop is used to compensate time-delay of object.

    回路采用模控制,以有效补偿对象大滞后特性

    youdao

  • Finally, the indirect vector control system is made as the research target and double close loop control systems which contain synchronous current inside loop and speed outside loop are introduced.

    首先对磁场定向控制理论进行了详细分析,比较后采用间接磁场定向的控制方法,建立基于同步电流内环转速环的闭环控制结构。

    youdao

  • When modeling a process, you sometimes discover that one or more activities should belong inside of a loop or a local process.

    在对流程建模有时会发现一个多个活动应该属于某个循环局部流程内部

    youdao

  • All four variables are declared outside the loop and therefore have excessive scope even though they're only used inside the loop.

    所有这四个变量都是循环声明的,尽管它们在循环内部使用,但作用域不止于此。

    youdao

  • If I'm iterating from I on the outside, I on the inside, I'm going to start changing the value and I might very well induce an infinite loop but J is okay.

    如果外面i开始迭代,或从里面开始迭代,我开始改变,我可能引起一个无限循环但是用j是可以的。

    youdao

  • I can be a little more careful about keeping track of what goes on inside of that loop. If I don't have any more work to do, let me just stop.

    小心点来跟,循环发生什么如果没什么可干了,停下来

    youdao

  • This is less "robust" in a sense than OS threads -- but it would not require much extra machinery to catch exceptions inside scheduler()'s loop rather than outside the loop.

    某种意义上“健壮性不如OS线程不过scheduler()循环捕获异常不会在循环需要更多机器资源。

    youdao

  • For example, in the for my $sndFile ( @soundList ) loop above, if the entire criteria specified (IBM, developerWorks, nathan) matches, the commands issued inside the loop will be what we see here.

    例如上面formy $sndFile ( @soundList )循环中,如果匹配指定整个条件IBM,developerWorks,nathan),循环内部发出的消息如下示。

    youdao

  • Double clicking on the while activity in the editor enables you to see the sub flow inside the while loop.

    如果双击编辑器中的while活动,就会看到whlie循环中的

    youdao

  • The first section inside the read-from-stdin loop prints out the cluster description, along with the node to display inside the cluster.

    read - from - stdin循环中的一部分打印描述打印在聚类显示节点

    youdao

  • Let's close the loop and let's try to figure out the voltage inside this loop.

    我们闭合线圈线圈内部电压

    youdao

  • The continue and break statements are used inside a while loop to continue with the next pass through the loop or break out of the loop, respectively.

    continuebreak语句分别用于在 while循环继续下一次循环中断循环。

    youdao

  • The repeated process fragment must be placed inside these loop modeling elements.

    重复流程片断必须置于这些循环建模元素内。

    youdao

  • Your code should (almost) never have multiple nested loops (a loop inside a loop inside a loop). Most of the code written today should use Hashtables, simple lists and singly nested loops.

    在编写代码尽量避免嵌套循环目前大多数代码都是使用了哈简单链表单循环

    youdao

  • Once you're inside the inner loop, create an XML element to represent the cell, using the appropriate column name as the element name.

    一旦进入内部循环,就创建一个XML元素表示单元格使用适当列名作为元素

    youdao

  • If a script is being written to create a number of bridge objects defined by a variable, the creation of those objects can be placed inside a loop.

    如果脚本正在编写用于创建变量定义大量网桥对象这些对象创建可以放在一个循环中。

    youdao

  • The code snippet in Listing 2 shows a loop to process every project in a DOAP file (normally, there's only one) and output data inside a element in an XML document.

    清单2中的代码片断展示了循环,该循环用于处理DOAP文件中的每个项目(通常只有个项目),输出XML文档元素括起来数据

    youdao

  • And, of course, you could take, if your loop doesn't move over time, I mean there is a different story if you start somehow taking your wire and somehow moving it inside the field.

    当然看出来如果线圈随着时间移动就是以某种方式改变线圈运动情况不同了。

    youdao

  • Each order is sent to the corresponding manufacturing plant inside the while loop, according to manufacturing plant policy through service "Manufacture plant 1".

    根据整个服务ManufacturePlant 1”中的制造厂策略,将每个订单发送while循环内相应制造厂

    youdao

  • In case you're not up on your STL, recall that for iterators the dereference operator returns the current object, so the line inside the for loop in the preceding snippet is equivalent to.

    如果STL熟悉,去看看有关迭代器反引用操作符的内容,它返回当前指向对象,上面代码段for循环的代码等同于。

    youdao

  • Using the Multi loop Method to analyse the faults inside the stator windings of large hydro-generators will face difficulties of large amount of calculation.

    回路分析大型水轮发电机定子绕组内部故障时,面临计算困难

    youdao

  • Most of the time, we just slap Iterator inside a for() loop or enhanced for() loop and move on, so to speak.

    可以这么大部分时间我们只是Iterator 随意放到for()循环加强 for() 循环中,然后继续其他操作了。

    youdao

  • Obviously, since this is a snapshot in time, the line could be any line inside the while loop, such as line 16, 17, or 18.

    显而易见因为一个即时快照,所以该行可能while 循环中的任意比如1617 18。

    youdao

  • Note that, although the insecure function tempnam (3) is being used, it is wrapped inside a loop using O_CREAT and O_EXCL to counteract its security weaknesses, so this use is OK.

    注意尽管使用安全tempnam(3)函数,但是包装循环中,并使用了O_CREATO_EXCL选项,从而抵消了安全弱点所以这样可以的。

    youdao

  • The first improvement (which is also supported by modern versions of C) is to move the declaration of the i loop variable inside the loop, as shown in Listing 7

    第一改进C 语言现代版本支持这项改进)i循环变量声明循环之内,如清单 7 所

    youdao

  • Figure 7 shows the visual flow and Figure 8 drills down to illustrate the flow inside the while loop.

    7展示视觉,图8深入演示while循环中的流。

    youdao

  • Figure 7 shows the visual flow and Figure 8 drills down to illustrate the flow inside the while loop.

    7展示视觉,图8深入演示while循环中的流。

    youdao

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定