-1

At the end of the execution of my program in MATLAB, the results, stored in a variable are being displayed in the command window. How to display the contents of a variable on to a different window?

Thanks!

Supreeth
  • 27
  • 7

1 Answers1

0

Don't know whether this method suits your need, but try this: suppose variable x has the processed information.

strx = num2str(x);set(handles.textboxname, 'String', strx);
Nishan
  • 3,644
  • 1
  • 32
  • 41