I want to take a cell array from the user containing the number of zeros and poles of each transfer function in a system identification app that I am designing in MATLAB's app designer.
User enters something like this:
{[2,1], [1,0]; [1,0], [2,1]}
EditField
or TextArea
treats this input as a char array or string, But I want to re-convert it to a cell array of numbers, not strings. How is that possible?