Scilab Function

whereami - donne l'arborescence d'appel de l'instruction courante

Calling Sequence

whereami()

Description

Affiche l'arborescence des appels jusqu'à l'emplacement courant, où se trouve l'appel à whereami(). Peut être utilisé suite à un appel à pause .

Examples

deff('y=test(a)',['y=sin(a)+1';
                  'y=t1(y)';
                  'y=y+1'])
deff('y=t1(y)',['y=y^2';'whereami()'])
test(1)
 

See Also

where ,   pause ,   errcatch ,