From: Michal Adam on
I have a few axes objects on my GUI and after first using I would like to recreate them. Anyone knows how to do it?

Thanks for all help.
From: Jan Simon on
Dear Michal

> I have a few axes objects on my GUI and after first using I would like to recreate them. Anyone knows how to do it?

Please describe what "recreate" means.

Jan
From: Michal Adam on
Hello Jan, thanks for reply.

Here is my GUI : http://img835.imageshack.us/img835/3797/guix.jpg

After the first using I have to "reset","clean" all the axes because otherwise I will get an error. So I have tried using following command: delete(findobj(0,'type','axes')) and after that I would like to create all the axes again. Maybe you have some other ideas, I have been trying to do this for whole day and still no result.

Thanks for all the help.
From: Matt Fig on
Use the CLA command or something like:

delete(findobj('type','image')) % Or perhaps FINDALL
From: Michal Adam on
thanks, it helped. I have one more question. In my application I have got a neural network to text recognition. So now I would like to display all my digits in one line. I did use a Static Text field but it shows me one the last digit. Could you give some clues how to display it in one line and all the digits.

Thanks.