<< nthroot Exponentielle power >>

Scilab Help >> Fonctions Elémentaires > Exponentielle > polar

polar

forme polaire

Séquence d'appel

[Ro,Theta]=polar(A)

Paramètres

A

matrice carrée réelle ou complexe

Ro, Theta

matrices réelles

Description

[Ro,Theta]=polar(A) renvoie la forme polaire de A c'est à dire :A=Ro*expm(%i*Theta) Ro symétrique >=0 et Theta hermitienne >=0.

Exemples

A=rand(5,5);
[Ro,Theta]=polar(A);
norm(A-Ro*expm(%i*Theta),1)

Voir aussi


Report an issue
<< nthroot Exponentielle power >>