From sauravs.iitb at gmail.com Mon Oct 31 14:32:13 2011 From: sauravs.iitb at gmail.com (Saurav Shandilya) Date: Mon, 31 Oct 2011 19:02:13 +0530 Subject: Displaying multiple image show window Message-ID: Hi, I am using Scilab 5.3.3 and SIVP toolbox 0.5.3-2 in windows xp. I am trying to display more than one image side by side at the same time through imshow() function, but image of 2nd imshow is overwriting the 1st one. Please tell me how i can display the multiple images simultaneously. Also please tell me how can add title to the image window. Regards Saurav Shandilya -------------- section suivante -------------- Une pièce jointe HTML a été nettoyée... URL: From sgougeon at free.fr Mon Oct 31 19:35:12 2011 From: sgougeon at free.fr (Samuel Gougeon) Date: Mon, 31 Oct 2011 19:35:12 +0100 Subject: [Scilab-Enseignement] Displaying multiple image show window In-Reply-To: References: Message-ID: <4EAEEA60.4040709@free.fr> Bonjour, Le 31/10/2011 14:32, Saurav Shandilya a écrit : > > Hi, > > I am using Scilab 5.3.3 and SIVP toolbox 0.5.3-2 in windows xp. > > I am trying to display more than one image side by side at the same > time through imshow() function, but image of 2nd imshow is overwriting > the 1st one. Please tell me how i can display the multiple images > simultaneously. subplot(1,2,1) // définit la 1ère zone d'affichage imshow(...) ..; // pour la 1ère image subplot(1,2,2) // définit la 2ème zone d'affichage imshow(...) ..; // pour la 2ème image > Also please tell me how can add title to the image window. title("Titre de l''image") Bien à vous Samuel PS : This list is in french. You might use users at lists.scilab.org if you want to post in english