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

power - 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

Puissances et exponentielles. Ce thème montre comment calculer des puissances et des exponentielles de matrices à l’aide de diverses méthodes. Graphical Comparison of Exponential Functions. This example shows an interesting graphical approach for discovering whether e^pi is greater than pi^e.

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

power - Element-wise power - MATLAB - MathWorks

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.mathworks.com › help › matlab › ref › exp.html

exp - Exponentielle - MATLAB - MathWorks France

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.

https://how.okpedia.org › fr › matlab › comment-elever-un-vecteur-a-une-puissance-dans...

[Matlab/Octave] Comment élever un vecteur à une puissance - Okpedia

Comment élever un vecteur à une puissance dans Matlab et Octave. Pour élever chaque élément d'un vecteur à une puissance, on utilise l'opérateur .^ v.^n. Le terme v est un vecteur, le terme n est un nombre entier. Le résultat est un vecteur composé des n-ièmes puissances des éléments.

https://fr.softoban.com › comment-travailler-avec-des-puissances-et-des-exponentielles...

Comment travailler avec des puissances et des exponentielles dans MATLAB

Nous pouvons calculer la puissance de n'importe quel scalaire ou tableau dans MATLAB en utilisant le ^ opérateur; cependant, les exponentielles d'un scalaire ou d'un tableau peuvent être calculées à l'aide du exp() fonction.

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.