I am importing data from an excel spreadsheet as follows:
options = readtable('options.xlsx');
Some of the excel cells contain descitions of arrays like "[1,2,3]". The cell from readtable would then be:
I would like to convert this to an array of doubles like
How can I go about doing this?
0 Comments
Sign in to comment.