<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: MathScript Nugget #4: Blazing Speed in LabVIEW MathScript RT Module</title>
    <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068227#M1069</link>
    <description>&lt;P&gt;Hello Jattas,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I do have a question that I cannot find the answer to, and I have searched for it many times:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible from a Mathscript to write to a Console Window that would pop up with the text written:&lt;/P&gt;&lt;P&gt;I want to write debug info and reminders in this window (console )&amp;nbsp; while testing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If possible, please provide a short example !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Feb 2010 19:41:19 GMT</pubDate>
    <dc:creator>geirove</dc:creator>
    <dc:date>2010-02-08T19:41:19Z</dc:date>
    <item>
      <title>MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1009866#M978</link>
      <description>&lt;P&gt;The previous nuggets were tied together by one common thread: MathScript now knows the data type of every variable in your script. This is what allows you to see colors in data type highlighting, detailed information in the context help, and automatic selection of output data types. For a computer scientist like me, this is very cool in its own right: MathScript knows the type of every variable without you having to include any type declarations in your script. Compare this to LabVIEW’s formula node (and also the C programming language): in these languages, every variable must be preceded by a type declaration like “float” or “bool”. None of this is necessary in MathScript. In computer science terms, we’ve taken a loosely typed language and made it strictly typed. &lt;BR /&gt;&lt;BR /&gt;But besides the usability features that this change enabled, there is one huge benefit of a strictly typed language: speed. In a loosely typed language, type checks and type resolution must happen at run-time. Are the inputs to my plus operator the same size? Are they compatible data types? What is the data type of the output? Questions like these are answered over and over, every time you run your script. These checks take time and end up slowing things down dramatically. MathScript pre-2009 was a victim of this: for many scripts, run-time performance was painfully slow.&lt;BR /&gt;&lt;BR /&gt;But with strict types in 2009, MathScript hits a new stratosphere of performance. Gone are the days when MathScript was hundreds or thousands of times slower than pure LabVIEW code. MathScript still doesn’t quite match the blazing speed of G for every example you can imagine, but for many scripts it will be within 2x or even closer.&lt;BR /&gt;&lt;BR /&gt;So if you gave up on MathScript in the past because it didn’t meet your performance needs, now is the time to give it a second look. We hope you’ll be pleasantly surprised!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;jattas&lt;/P&gt;&lt;P&gt;LabVIEW MathScript R&amp;amp;D&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ps Check out previous MathScript Nuggets &lt;A href="http://forums.ni.com/ni/board/message?board.id=450&amp;amp;thread.id=951" target="_self"&gt;here&lt;/A&gt;. &lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2009 15:29:15 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1009866#M978</guid>
      <dc:creator>jattas</dc:creator>
      <dc:date>2009-10-26T15:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1064617#M1056</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for the heads up jattas. I was worryibng about this, and creaed a small crude VI to test the performance of a Mathscript vs a Formula Node.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my test, the Formula Node was approx 2.6 times faster. That is not critical in my app: What IS critical, is to be able to DEBUG (:-) ) the formulas which I have a LOT of in this application. I will present it at a later time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 15:28:12 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1064617#M1056</guid>
      <dc:creator>geirove</dc:creator>
      <dc:date>2010-02-02T15:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1064799#M1057</link>
      <description>&lt;P&gt;Hi Geir,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm glad this nugget was helpful. I took a look at the code you attached and saw similar results on my machine. Also interesting to note: a "pure G" implementation that uses the Sine, Cosine, and Divide primitives performed about the same as the formula node. Hopefully MathScript can get to that level soon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The MathScript Node has a huge advantage over the formula node for debugging. If you haven't already, be sure to check out the nuggets on &lt;A href="http://forums.ni.com/ni/board/message?board.id=450&amp;amp;thread.id=999" target="_self"&gt;probing &lt;/A&gt;and &lt;A href="http://forums.ni.com/ni/board/message?board.id=450&amp;amp;thread.id=1003" target="_self"&gt;breakpoints&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;jattas&lt;/P&gt;&lt;P&gt;LabVIEW MathScript R&amp;amp;D &lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 18:47:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1064799#M1057</guid>
      <dc:creator>jattas</dc:creator>
      <dc:date>2010-02-02T18:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068227#M1069</link>
      <description>&lt;P&gt;Hello Jattas,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I do have a question that I cannot find the answer to, and I have searched for it many times:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible from a Mathscript to write to a Console Window that would pop up with the text written:&lt;/P&gt;&lt;P&gt;I want to write debug info and reminders in this window (console )&amp;nbsp; while testing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If possible, please provide a short example !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2010 19:41:19 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068227#M1069</guid>
      <dc:creator>geirove</dc:creator>
      <dc:date>2010-02-08T19:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068317#M1070</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the MathScript Window, you can do this by typing a command without a semi-colon ( ; ) after it. This will print the result of the command in the output pane of the MathScript Window. So if you want a line of text, you could just type that string and MathScript will print it. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/bb1ba4246ce0b99a0181d561b90d9d1650e203d4/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f313034353069324632383741324337384139304141422f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="mswindow.png" title="mswindow.png" align="CENTER" /&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can do the same thing in your code in the MathScript Node. To see the output there, use the output tab of the &lt;A href="http://forums.ni.com/ni/board/message?board.id=450&amp;amp;thread.id=999" target="_self"&gt;MathScript Probe&lt;/A&gt;. You launch the probe by right-clicking on the MathScript Node and selecting "Probe" before it runs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/23fd3a164e2bb91af17cb3eb44808d48ad25f57f/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f313034353169383135453231433830423732374132362f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="outputwindow.png" title="outputwindow.png" align="CENTER" /&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this the kind of thing you were looking for? &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;jattas&lt;/P&gt;&lt;P&gt;LabVIEW MathScript R&amp;amp;D &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2010 21:31:47 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068317#M1070</guid>
      <dc:creator>jattas</dc:creator>
      <dc:date>2010-02-08T21:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068355#M1071</link>
      <description>&lt;P&gt;Hello Jattas,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for your fast answer ! &lt;/P&gt;&lt;P&gt;Your example showed me new ways to debug Mathscript, but unfortunately it was not what I was looking for:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The scenario is as follows: I have many (10 - 20) Mathscript nodes that does complex calculations that are under development: In some of them, there are issues that I need to remember to pay attentention to later:&amp;nbsp; In Java or C development environment, I would then write to the GLOBAL console e.g.: "In MyClass remember to check value of constant: tx" ... and so forth:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I need to write to a Global Console that draws my attention to things to be checked later. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to do this? &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With your example, I have to install Probes for all the 10 - 20 
mathscript nodes each time I start LabView, and this is too cumbersome.&amp;nbsp; &lt;/P&gt;&lt;DIV class="message-edit-history"&gt;&lt;SPAN class="edit-author"&gt;Message Edited by geirove on &lt;/SPAN&gt;&lt;SPAN class="local-date"&gt; 02-08-2010&lt;/SPAN&gt;&lt;SPAN class="local-time"&gt; 04:24 PM&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 08 Feb 2010 22:24:53 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068355#M1071</guid>
      <dc:creator>geirove</dc:creator>
      <dc:date>2010-02-08T22:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068373#M1072</link>
      <description>&lt;P&gt;Hello again,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Update: The following Plot command does what I want, but is also cunbersome to use;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In two diferent Mathscript nodes I put the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;text(0,1, 'Test in k_V4') &amp;amp; in anotheri Put: text(0,2, 'Test in rb_V4')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This pops up a Global Plot window as shown in the attached picture.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, its clumsy, since I have to remember the line numbers used... But, I recon it could be improved, but I do not have time to play with this right now...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any better ideas or maybe you could come up with a customized Mathscript command that Uses the Plot Window as a Global Console?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2010 22:53:31 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068373#M1072</guid>
      <dc:creator>geirove</dc:creator>
      <dc:date>2010-02-08T22:53:31Z</dc:date>
    </item>
    <item>
      <title>回复： Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068501#M1075</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An alternative way is to write output to a file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/3bd80f99ced8e413aa74ac2caab9e3cc9d71db3b/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f313034383569423933314330394431303644393546342f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="GlobalConsole.png" title="GlobalConsole.png" align="LEFT" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2010 05:14:55 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068501#M1075</guid>
      <dc:creator>ttrr</dc:creator>
      <dc:date>2010-02-09T05:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: 回复： Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068588#M1076</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;File works, but does not give the "attention" I need. I want a Window to Popu Up (or a Console that is visible all the time) that show the important messages that should not be forgotten. It is easy to forget about the file messages, and you manually have to check them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A console is available in all Text Based languages I know of, and&amp;nbsp; should be available for MathScript as well. NI will probably implement it some time, but until then I need a workaround.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2010 08:47:16 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068588#M1076</guid>
      <dc:creator>geirove</dc:creator>
      <dc:date>2010-02-09T08:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: 回复： Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068851#M1077</link>
      <description>&lt;P&gt;Hi Geir,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand what you're looking for now. MathScript has a couple of functions that do similar things, but I can't think of a way to do exactly what you want. The &lt;A href="http://zone.ni.com/reference/en-XX/help/371361F-01/lvtextmath/msfunc_dos/" target="_self"&gt;dos &lt;/A&gt;and &lt;A href="http://zone.ni.com/reference/en-XX/help/371361F-01/lvtextmath/msfunc_system/" target="_self"&gt;system &lt;/A&gt;functions can be used call any OS command. If you call them with an ampersand, they will even open a console window. For example, you could echo a message like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;P&gt;system('echo This is my message &amp;amp;')&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, every time you call the command, it will open a new command window instead of re-using the one opened previously.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There may be a way to combine ttrr's suggestion with this approach. You could write your messages to a file and then use 'system' to show them all at the end of your program. I realize it's not ideal, but it's the best pure-MathScript solution I can come up with at the moment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;jattas&lt;/P&gt;&lt;P&gt;LabVIEW MathScript R&amp;amp;D &lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2010 15:22:43 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1068851#M1077</guid>
      <dc:creator>jattas</dc:creator>
      <dc:date>2010-02-09T15:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: 回复： Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1069132#M1078</link>
      <description>&lt;P&gt;Thanks Jattas &amp;amp; ttrr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From ttrr I learned about the global def. I have used this with the Plot command to increment the line number I write to in the Plot window.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the beginning of my program I now do the following in a ms node: &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;global lineNum;&lt;BR /&gt;lineNum = 49;&lt;BR /&gt;&lt;BR /&gt;set (axes, 'YLim', [0, lineNum+1], 'XLim', [0, 30])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then, every place I want to "print " to the plot window, I do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;text(0,lineNum, 'k_V4: My Comment')&lt;BR /&gt;lineNum = lineNum - 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not have time to look at how to define my own ms functions yet, but I think this could all be wrapped in a &lt;/P&gt;&lt;P&gt;mywrite.m file that defines the global and decrements the line number. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Geir Ove&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2010 20:27:46 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1069132#M1078</guid>
      <dc:creator>geirove</dc:creator>
      <dc:date>2010-02-09T20:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1430030#M1231</link>
      <description>&lt;DIV class="lia-component-body lia-message-body"&gt;
&lt;DIV class="lia"&gt;
&lt;P&gt;Hi Jattas,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Between Mathscript node and formula node, which one is better integrated with LabVIEW, native to LabVIEW, and runs faster?&amp;nbsp; I am writing instrument driver.&amp;nbsp; If one of my customers has a only got a base-licence, he will not be able to run something writen by Mathscript.&amp;nbsp; Can he run if&amp;nbsp;driver is writen by formula?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 27 Jan 2011 15:34:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1430030#M1231</guid>
      <dc:creator>qing_shan61</dc:creator>
      <dc:date>2011-01-27T15:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: MathScript Nugget #4: Blazing Speed</title>
      <link>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1431292#M1232</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ran a quick test in LabVIEW 2010 and you can create and run the Formula Node in the Base version. If your application must run in Base LabVIEW then you are correct that MathScript is not an option, so you're left with the Formula Node or pure G code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are many tradeoffs in the general question of Formula Node vs. MathScript Node. MathScript supports more functions (700+ vs about 40) and has more usability features like debugging and syntax highlighting. They both have excellent run-time performance but the Formula Node is often a little bit faster. As mentioned, the Formula Node is also available in the Base version and doesn't require purchasing an additional product (the MathScript RT Module).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps you make your decision.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;jattas&lt;/P&gt;
&lt;P&gt;LabVIEW R&amp;amp;D&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2011 08:24:25 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW-MathScript-RT-Module/MathScript-Nugget-4-Blazing-Speed/m-p/1431292#M1232</guid>
      <dc:creator>jattas</dc:creator>
      <dc:date>2011-01-28T08:24:25Z</dc:date>
    </item>
  </channel>
</rss>

