MATLAB: How to define and store string to matrix or array

charloopMATLABstring

Hi,
I have a variable x inside a for loop ,
Input,
In first intration, x='apple'
In second iteration, x= 'mango'
In third interation, x= 'orange'
—————————————
for i=1:3
x='apple';
end
————————————–
I want to store these strings in a matrix or array and write them to a excel file.
Can anyone, tell me how to do ?
Regards,
Jaffrey Hudson

Best Answer

Related Question