~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/gui/x_message.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
x_message          Scilab Group          Scilab Function          x_message
2
 
NAME
3
 
   x_message - X window message
4
 
  
5
 
CALLING SEQUENCE
6
 
 [num]=x_message(strings [,buttons]) 
7
 
PARAMETERS
8
 
 strings
9
 
       : vector of characters strings to be displayed
10
 
      
11
 
 buttons
12
 
       : character string or 2 vector of character strings which specifies
13
 
      button(s) name(s). Default value is "Ok"
14
 
      
15
 
 num  : number  of button clicked (if 2 buttons are specified)
16
 
      
17
 
DESCRIPTION
18
 
   for displaying a message (diagnostic,... ) and waiting for an answer
19
 
  (button click). The function returns only after a click on a button.  
20
 
  
21
 
EXAMPLES
22
 
  gain=0.235;x_message('value of gain is :'+string(gain))
23
 
  x_message(['singular matrix';'use least squares'])
24
 
 
25
 
  r=x_message(['Your problem is ill conditioned';
26
 
              'continue ?'],['Yes','No'])
27
 
SEE ALSO
28
 
   x_dialog, x_mdialog, x_message_modeless
29