Help with data...
I have a worksheet that takes in a .csv file and puts it into a table. I then use the column operator to turn that into two vectors, time and current. Now, for some magical reason, I am getting an error on the command current:=data<ctrl><6>1. It will no longer put the second column of the data into the vector named current, and it hightlights the word data and the column operator red with the message "this value must be a scalar or matrix". Anyone have any idea why this would sudden stop working? I literally changed nothing on the worksheet. For the record, it now does this will all of my other worksheets as well. Recreating the WS from scratch didn't help either.

| 0 | 1 |
|---|---|
| data | data |
| ... | ... |
time:=data^0*s
current:=data^1*A
instead of ^ imagine column operator

