<simulation>
  
<header>
    
<title>Inversion d'une matrice</title>
    
<title lang="english">Inversion of a matrix</title>
    
<title lang="spanish">Inversión de una matriz</title>
    
<author>Stéphane Mottelet, Guillaume Barbaud</author>
    
<date>Fri Sep 23 18:45:11 CEST 2005</date>
    
<keywords>simulation,scilab,xml</keywords>
    
<keywords lang="spanish">Simulación, Scilab, XML</keywords>
  
</header>
  
<notes>
    
<p>Pour calculer l'inverse de la matrice A, utilisez le menu actions.</p>
    
<p>Dans cette appliquette Scilab est caché car il n'y a pas de sortie graphique.</p>
  
</notes>
  
<notes lang="english">
    
<p>To compute the inverse of the A matrix, use the "actions" menu.</p>
    
<p>In this applet Scilab is hidden because there is no graphic output</p>
  
</notes>
  
<notes lang="spanish">
    
<p>Para calcular el inverso de la matriz A, utilice el menú Acciones</p>
    
<p>En este programita Scilab está escondido porque no hay salida grafica</p>
  
</notes>
  
<parameters>
    
<section>
      
<title>Matrices</title>
      
<title lang="english">Matrices</title>
      
<title lang="spanish">Matrices</title>
      
<database label="matrices" editable="yes">
        
<matrix cols="3" label="a" rows="3" save="yes" load="yes" clear="yes">
          
<name>A</name>
          
<name lang="english">A</name>
          
<name lang="spanish">A</name>
        
</matrix>
        
<record>
          
<name>Matrice 1</name>
          
<name lang="english">Matrix 1</name>
          
<name lang="spanish">Matriz 1</name>
          
<matrix-value ref="a">
            
<row>
              
<value>1 0 0</value>
            
</row>
            
<row>
              
<value>0 1 0</value>
            
</row>
            
<row>
              
<value>0 0 1</value>
            
</row>
          
</matrix-value>
        
</record>
        
<record>
          
<name>Matrice 2</name>
          
<name lang="english">Matrix 2</name>
          
<name lang="spanish">Matriz 2</name>
          
<matrix-value ref="a">
            
<row>
              
<value>1 0 0</value>
            
</row>
            
<row>
              
<value>0 2 0</value>
            
</row>
            
<row>
              
<value>0 0 3</value>
            
</row>
          
</matrix-value>
        
</record>
        
<record>
          
<name lang="english">Matrix 3</name>
          
<matrix-value ref="a">
            
<row>
              
<value>1 2 3</value>
            
</row>
            
<row>
              
<value>4 5 6</value>
            
</row>
            
<row>
              
<value>7 8 0</value>
            
</row>
          
</matrix-value>
        
</record>
      
</database>
      
<subsection>
        
<matrix cols="3" label="ainv" rows="3" state="disabled">
          
<name>inverse de A</name>
          
<name lang="english">inverse of A</name>
          
<name lang="spanish">Inverso de A</name>
        
</matrix>
      
</subsection>
    
</section>
    
<actions>
      
<title>Actions</title>
      
<title lang="english">actions</title>
      
<title lang="spanish">Acciones</title>
      
<action update="ainv">
        
<title>Calculer l'inverse de A</title>
        
<title lang="english">Compute the inverse of A</title>
        
<title lang="spanish">Calcular el inverso de A</title>
        
<script>ainv=inv(a)</script>
      
</action>
    
</actions>
  
</parameters>
</simulation>