05-27-2024 09:26 AM
Hello guys,
I want to compare two 1D Arrays. And I want to calculate the maximum deviation and the minimum deviation. How can I implement that?
Solved! Go to Solution.
05-27-2024 09:28 AM
Subtract the 2nd array from the 1st and do an Array Min-Max?
05-27-2024 09:30 AM
Does I need an for loop or while loop?
How can I use an boolean, to say that my derivation is in my range I rhought on range and coerce.
05-27-2024 09:37 AM
@medum wrote:
Does I need an for loop or while loop?
How can I use an boolean, to say that my derivation is in my range I rhought on range and coerce.
You mentioned nothing of In range in your 1st post. See if this helps.
05-27-2024 09:54 AM
Why i dont have for-Loop and while-Loop
05-27-2024 10:24 AM
@medum wrote:
Why i dont have for-Loop and while-Loop
We really don't know what you have or don't have, but nobody needs loops to compare arrays.
05-28-2024 02:52 AM
@medum wrote:
Why i dont have for-Loop and while-Loop
Many functions handles arrays automagically.
05-28-2024 03:08 AM
Thank u very much!