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

The MATLAB functions log1p and expm1 calculate log (1 + x) and e x-1 accurately for very small values of x. For example, if you try to add a number smaller than machine precision to 1, then the result gets rounded to 1.

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

Affichage sans puissance de 10 - MATLAB - Developpez.com

Est-il possible d'afficher des nombres sans utiliser l'écriture scientifique ? Exemple: 1.234567891011120e+014 Devient 123456789101112 En fait, quand j'affiche une matrice de résultat, ça va de 10^3 à 10^7 et

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

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

Les puissances de 10 se notent avec la lettre « e » en minuscule ou en capitale : 5,2·10 3 s'écrit 5.2e3 ou 5.2E3, 5,2·10-3 s'écrit 5.2e-3 ou 5.2E-3. On peut aussi utiliser le « d » minuscule ou capital.

https://www.mathworks.com › matlabcentral › answers › 365084-10e5-10-5-is-not-true-in-matlab

10e5 == 10^5 is not true in MATLAB - MATLAB Answers - MathWorks

The notation "10e5" means "10 times of 10 to the power of 5," where the "e" represents the exponent of the power of 10 (10^x). So for your example, 1e5 == 10^5.

https://stackoverflow.com › questions › 29712609

matlab - How can i write a number values in powers of 10 ... - Stack ...

If you only want to print the data in scientific format, the Matlab itself can do this for you. If you can to obtain the scientific notation form as. a * 10^b, i.e., obtain the coefficient a and the exponent b, you can first obtain the b as: b = floor(log10(abs(x))); then the a as: a = x * 10^(-b);

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

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

Affichage en puissance de 10 - 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...

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.

exp - Exponentielle - MATLAB - MathWorks France