I have a function that accepts vectors as inputs.
I have an ffdf
named X
, and would like to use columns of data as vectors for the function inputs.
To take a column of data named "Mag" as a vector I would use the following:
X[['Mag']]
However this is an ff
vector I believe and the function will only accept a normal vector, how do I change this back to a normal vector?
I think I need to use just the physical components but I am not sure how to code this.
Thanks in advance.
You can just add
[]
at the end.