02-03-2008 12:41 AM
02-03-2008 10:31 PM
06-27-2017 02:41 PM
K * (1/S)
06-27-2017 03:29 PM
06-27-2017 05:11 PM
No, there is no array integration in formula node functions. Math script or integral.vi
07-01-2017 01:02 PM
I don´t understand why the following integral ( Untitled_integral.Vi )shown ' 0 '. Can you help me?
07-01-2017 01:14 PM
@Mesqunu wrote:
I don´t understand why the following integral ( Untitled_integral.Vi )shown ' 0 '. Can you help me?
Your array is initially empty, and no multiplication or addition will magically append elements to it. Turning an empty 1D array into a 2D array using "built array" just gives you you an empty 2D array.
Are you trying to append new data to the existing array? In that case you need to hook things up quite differently, but then you should also not run this loop as fast as the computer allows or you'll run out of memory very quickly.
Start with some tutorials. You'll figure it out!