MATLAB: Different way of representation

arraymatrixoutput

Hi,
This might be one of the basic doubts, but still going to ask it
When i run a code i get the output as
opcon =
1×1 cell array
{'tc'}
I want the output t o is be
opcon = tc
How do i change it ?

Best Answer

out=opcon{1};
Related Question