I don't know of a way to move that exponent label, but if you have R2023b or later, you can use the ysecondarylabel function to set its string to empty, and then create your own exponent label (using the text function) where you want. plot(1e6:1e6:7e6) ylim([1e6 7.5e6]) ax = gca(); ysecondarylabel(ax,'') text(ax, ... 'String','x10^{6}', ... 'Units','normalized', ... 'Position',[0 1], ... 'HorizontalAlignment','right', ... 'VerticalAlignment','bottom') Answer from Voss on mathworks.com
🌐
MathWorks
mathworks.com › matlab › mathematics › elementary math › exponents and logarithms
Powers and Exponentials - MATLAB & Simulink
This topic shows how to compute matrix powers and exponentials using a variety of methods. 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: ... If A is square and nonsingular, then A^(-p) effectively multiplies inv(A) by itself p-1 times. ... MATLAB...
Discussions

Formatting legend to include exponent in Matlab - Stack Overflow
very simple question here that I can't find an answer to.. I know how to adjust the values in the axes but for the legend, I want to include the value of a certain number that's on the order of 1e6... More on stackoverflow.com
🌐 stackoverflow.com
Exponential precision of power engineering format
https://www.mathworks.com/matlabcentral/answers/396687-exponential-precision-of-power-engineering-format More on mathworks.com
🌐 mathworks.com
2
0
April 23, 2018
Modulus of a negative exponent in matlab?
Modulus of a negative exponent in matlab?. Learn more about matlab function, matlab More on mathworks.com
🌐 mathworks.com
2
0
June 4, 2018
matrix - How to get Exponent of Scientific Notation in Matlab - Stack Overflow
When the numbers are really small, Matlab automatically shows them formatted in Scientific Notation. Example: A = rand(3) / 10000000000000000; A = 1.0e-016 * 0.6340 0.1077 0.6477 ... More on stackoverflow.com
🌐 stackoverflow.com
🌐
MathWorks
mathworks.com › matlabcentral › answers › 396687-exponential-precision-of-power-engineering-format
Exponential precision of power engineering format - MATLAB Answers - MATLAB Central
April 23, 2018 - engntn = @(x) [x*10.^(-3*floor(log10(abs(x))/3)) 3*floor(log10(abs(x))/3)]; % Engineering Notation Mantissa & Exponent ... https://www.mathworks.com/matlabcentral/answers/396687-exponential-precision-of-power-engineering-format#comment_559801
Find elsewhere
🌐
MathWorks
mathworks.com › matlab › mathematics › linear algebra
mpower - Matrix power - MATLAB
If base A is a sparse matrix, exponent B must be a nonnegative real integer. If A is a sparse scalar, B must be a scalar. For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).
🌐
CK-12 Foundation
ck12.org › all subjects › cbse math › laws of exponents › how do you use exponents in matlab?
Flexi answers - How do you use exponents in MATLAB? | CK-12 Foundation
September 11, 2025 - In MATLAB, you can use exponents with the ^ operator. Here’s how it works: Basic Usage: To raise a number to a power, you write it like this: result = base^exponent; For example, to calculate @$\begin{align*}2^3\end{align*}@$: result = 2^3; % This will give you 8 Using Variables: You can ...
🌐
EDUCBA
educba.com › home › data science › data science tutorials › matlab tutorial › exponential in matlab
Exponential in Matlab | How to do Exponential in Matlab?
March 13, 2023 - Then we write the exponential equation using exp function, we take an exp in parenthesis x1 is multiply by 2 and these exponential values are assigned to variable y1, the equation is y1 = e^x, the value of x1 is varied from -5 to 20 and according ...
Address   Unit no. 202, Jay Antariksh Bldg, Makwana Road, Marol, Andheri (East),, 400059, Mumbai
🌐
MathWorks
mathworks.com › matlabcentral › answers › 278578-how-to-change-the-exponent-number-in-my-answer
How to change the exponent number in my answer - MATLAB Answers - MATLAB Central
April 12, 2016 - Hello, I am new to matlab and I know this maybe a stupid question I am working on a question which requires me to show the answer with the exponent e-9 So I got my answer as 4.847973532796457...
🌐
Wikipedia
en.wikipedia.org › wiki › IEEE_754
IEEE 754 - Wikipedia
1 week ago - Finite numbers, which can be described by three integers: s = a sign (zero or one), c = a significand (also called a coefficient or mantissa) having no more than p digits when written in base b (i.e., an integer in the range through 0 to bp − 1), and q = an exponent such that emin ≤ q + p − 1 ≤ emax.
🌐
MathWorks
mathworks.com › matlabcentral › answers › 86547-plotting-an-unknown-variable-exponent
Plotting an Unknown Variable Exponent? - MATLAB Answers - MATLAB Central
September 7, 2013 - Hello, I am trying to figure out how to solve for an unknown variable exponent via graphing. Using the equation: F = P^-m I am trying to solve for the value of m given a set of F and ...
🌐
Wikipedia
en.wikipedia.org › wiki › Order_of_operations
Order of operations - Wikipedia
February 18, 2026 - These conventions exist to avoid notational ambiguity while allowing notation to remain brief. Where it is desired to override the precedence conventions, or even simply to emphasize them, parentheses ( ) can be used. For example, (2 + 3) × 4 = 20 forces addition to precede multiplication, while (3 + 5)2 = 64 forces addition to precede exponentiation.
🌐
Wikipedia
en.wikipedia.org › wiki › Colors_of_noise
Colors of noise - Wikipedia
3 weeks ago - Colored noise can be computer-generated by first generating a white noise signal, Fourier-transforming it, then multiplying the amplitudes of the different frequency components with a frequency-dependent function. Matlab programs are available to generate power-law colored noise in one or any number of dimensions.