K * (1/S)
No, there is no array integration in formula node functions. Math script or integral.vi
I don´t understand why the following integral ( Untitled_integral.Vi )shown ' 0 '. Can you help me?
@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!