Région de recherche :

Date :

https://fr.mathworks.com › help › matlab › math › powers-and-exponentials.html

Puissances et exponentielles - MATLAB & Simulink - MathWorks

Ce thème montre comment calculer des puissances et des exponentielles de matrices à l’aide de diverses méthodes. Puissances d’entiers positifs. Si A est une matrice carrée et p un entier positif, alors A^p multiplie A par elle-même p-1 fois. Par exemple : A = [1 1 1. 1 2 3. 1 3 6]; A^2. ans = 3×3 . 3 6 10. 6 14 25. 10 25 46.

https://www.mathworks.com › help › matlab › math › powers-and-exponentials.html

Powers and Exponentials - MATLAB & Simulink - MathWorks

Answers. Trial Software. Product Updates. Powers and Exponentials. This topic shows how to compute matrix powers and exponentials using a variety of methods. Positive Integer Powers. If A is a square matrix and p is a positive integer, then A^p effectively multiplies A by itself p-1 times. For example: A = [1 1 1. 1 2 3. 1 3 6]; A^2. ans = 3×3 .

https://fr.mathworks.com › help › matlab › ref › power.html

Element-wise power - MATLAB - MathWorks France

Syntax. C = A.^B. C = power(A,B) Description. C = A.^B raises each element of A to the corresponding powers in B. The sizes of A and B must be the same or be compatible. If the sizes of A and B are compatible, then the two arrays implicitly expand to match each other.

https://www.mathworks.com › help › matlab › exponents-and-logarithms_fr.html

Exposants et logarithmes - MATLAB & Simulink - MathWorks

Exposants et logarithmes. Fonctions exponentielle, logarithme, puissance et racine. Outre les fonctions courantes comme exp et log, MATLAB ® propose plusieurs fonctions associées permettant d’effectuer des calculs numériques en toute flexibilité.

https://www.mathworks.com › help › matlab › ref › power.html

power - Element-wise power - MATLAB - MathWorks

power, .^ Element-wise power. collapse all in page. Syntax. C = A.^B. C = power(A,B) Description. C = A.^B raises each element of A to the corresponding powers in B. The sizes of A and B must be the same or be compatible. If the sizes of A and B are compatible, then the two arrays implicitly expand to match each other.

https://fr.wikibooks.org › wiki › Découvrir_Matlab › Calculs_élémentaires

Découvrir Matlab/Calculs élémentaires — Wikilivres

Matlab utilise les fonctions et opérateurs classiques : + (addition), -(soustraction), * (produit), / (division), ^ ou ** (élévation à une puissance), sqrt() (racine carrée), cos(), sin(), tan() pour les fonctions trigonométriques de base, acos(), asin(), atan() pour leurs réciproques, cotg() pour la cotangente ;

https://fr.mathworks.com › help › matlab › ref › exp.html

exp - Exponentielle - MATLAB - MathWorks France

Description. Y = exp(X) renvoie l’exponentielle ex pour chaque élément dans le tableau X. Pour les éléments complexes z = x + iy, cela renvoie l’exponentielle complexe. e z = e x (cos y + i sin y) . Utilisez expm pour calculer une exponentielle de matrice. exemple.

exp - Exponentielle - MATLAB - MathWorks France

https://nte.mines-albi.fr › MATLAB › fr › co › calculsElementaires.html

MATLAB, pour la résolution de problèmes numériques - IMT Mines Albi

Calculs élémentaires. L'utilisation la plus basique de MATLAB consiste à utiliser l'interpréteur de commandes comme une calculatrice. On peut alors utiliser les opérateurs arithmétiques les plus courants : +, -, *, /, ^. Le dernier signifie «puissance».

https://commentouvrir.com › tech › comment-utiliser-matlab-pour-les-operations...

Comment utiliser MATLAB pour les opérations ... - Commentouvrir

Comment écrire une puissance sur MATLAB ? Pour élever un nombre à une puissance, vous pouvez utiliser l’opérateur ^ dans MATLAB. Par exemple, pour élever 2 à la puissance 3, vous pouvez écrire 2^3, ce qui renverra le résultat 8. Vous pouvez également utiliser la fonction power (x,y) pour élever un nombre x à la puissance y.

https://www.developpez.net › ... › matlab › affichage-puissance-10-a

Affichage en puissance de 10 - MATLAB - Developpez.com

Je cherche à afficher un nombre par exemple 10^8 sous forme de puissance de 10 dans Matlab, hors Matlab me l'affiche toujours sous la forme 100000000. J'ai essayé de changer les formats en short et en short e, mais ça ne change rien...