Manipulate Size of Arrays
Hello,
let´s say I have two arrays with the same length.
Also I have a function which wants to do further calculations with the arrays.
I need some kind of trick where I can ignore the first element of A and B.
I tried a for-loop from k = 1 to length(B) but no... doesnt work this way.
I expect a result array like this with 5-1 = 4 elements (first row deleted).
In best case I need all the array manipulations within the function C.

Thanks

