MATLAB: Calling a string from string array

MATLABplotstringstrings

I have an array 1 by 11 which has 11 strings but i wanted to know how can i name the title of one of my plots as the 3rd string from the string array. this might sound stupid

Best Answer

title(s(3)) % s your string array
Related Question