Natural Log in MATLAB: The Ultimate Guide You Need!
MATLAB, a powerful numerical computing environment, provides robust tools for mathematical operations. Exponentiation, a fundamental mathematical concept, often requires a complementary logarithmic function. Simulink, integrated within the MATLAB ecosystem, allows for modeling and simulation utilizing these functions. Understanding how to calculate the natural log in matlab is crucial for accurate analysis within these environments. This guide will illuminate the process of efficiently using the log function to compute natural logarithms, enabling precise calculations in your MATLAB projects for engineering or financial tasks.

Image taken from the YouTube channel physics & math warrior , from the video titled natural logarithm and common logarithm command on matlab .
MATLAB, short for Matrix Laboratory, stands as a cornerstone in the world of technical computing. This powerful programming language and environment is favored by engineers, scientists, and mathematicians for its ability to handle complex calculations, data analysis, and algorithm development.
Its intuitive interface and extensive library of built-in functions make it an indispensable tool for a wide range of applications. From simulating intricate systems to visualizing complex data sets, MATLAB empowers users to tackle challenging problems with efficiency and precision.
At the heart of many scientific and engineering calculations lies the natural logarithm, often denoted as ln(x). The natural logarithm is the logarithm to the base e, where e is an irrational and transcendental number approximately equal to 2.71828.
Significance of the Natural Logarithm
The significance of the natural logarithm extends far beyond pure mathematics. It plays a crucial role in various fields, including:
-
Engineering: Used in circuit analysis, control systems, and signal processing.
-
Physics: Appears in equations related to radioactive decay, thermodynamics, and quantum mechanics.
-
Mathematics: Essential for calculus, differential equations, and statistical analysis.
Purpose of This Guide
This guide is designed to provide a comprehensive understanding of how to calculate and utilize natural logarithms within the MATLAB environment. Whether you are a seasoned MATLAB user or a beginner, this resource will equip you with the knowledge and skills necessary to confidently work with natural logarithms in your projects.
We will explore the log()
function, which serves as the primary tool for computing natural logarithms in MATLAB. Through clear explanations, practical examples, and real-world applications, you will gain a solid grasp of the concepts and techniques involved.
By the end of this guide, you will be able to seamlessly integrate natural logarithmic calculations into your MATLAB workflows, enabling you to solve complex problems and gain valuable insights from your data.
Understanding the Natural Logarithm (ln): A Deep Dive
Having established the significance of MATLAB and the natural logarithm, it's crucial to delve deeper into understanding what exactly a logarithm is and what makes the natural logarithm so special. This foundational knowledge will make the subsequent exploration of the log()
function in MATLAB much more intuitive.
The Essence of Logarithms
At its core, a logarithm answers the question: "To what power must we raise a given base to obtain a specific number?" In mathematical terms, if by = x, then the logarithm of x to the base b is y, written as logb(x) = y.
Think of it as the inverse operation of exponentiation.
For example, log10(100) = 2 because 10 raised to the power of 2 equals 100.
Common Logarithms vs. Natural Logarithms
While logarithms can be defined for any positive base (except 1), two bases are particularly prevalent: 10 and e.
Logarithms with base 10 are called common logarithms, often written as log10(x) or simply log(x). They are historically significant due to our base-10 number system.
In contrast, natural logarithms use the base e (Euler's number) and are denoted as ln(x).
It's important to note this distinction, as different programming languages and mathematical contexts may use log()
to refer to either the natural logarithm or the common logarithm. In MATLAB, log()
specifically refers to the natural logarithm.
Base e: The Cornerstone of Natural Logarithms
The base of the natural logarithm, denoted by the letter e, is a mathematical constant that is approximately equal to 2.71828.
It is an irrational number, meaning its decimal representation neither terminates nor repeats.
More importantly, e is a transcendental number, meaning it is not the root of any non-zero polynomial equation with rational coefficients.
The significance of e stems from its appearance in various areas of mathematics and science, particularly in calculus, where it arises naturally in the study of exponential growth and decay.
Euler's number arises when you look at continuous compounding, and its presence in natural logs is pivotal.
The Interplay Between Natural Logarithms and Exponential Functions
The natural logarithm and the exponential function, ex, are inverses of each other. This inverse relationship is fundamental to understanding and manipulating equations involving exponential growth or decay.
This means that ln(ex) = x and eln(x) = x. This reciprocal relationship is extremely useful in solving equations.
Understanding this inverse relationship allows you to seamlessly switch between logarithmic and exponential forms, which is essential for solving many mathematical and scientific problems. The ability to move between these forms is at the core of problem solving.
The log() Function: Your Gateway to Natural Logs in MATLAB
With a firm grasp of the fundamental nature of logarithms, specifically the natural logarithm, we can now transition to the practical application of calculating these values within the MATLAB environment. This is where the log()
function becomes indispensable, acting as the primary tool for accessing natural logarithms.
Unveiling the log()
Function
The log()
function in MATLAB serves as your direct portal to computing natural logarithms. It's a fundamental function, deeply ingrained in MATLAB's architecture, designed for efficient and accurate calculations.
Think of it as the "ln" button on a scientific calculator, but with the added power and versatility that MATLAB offers.
Understanding the Syntax
The syntax of the log()
function is remarkably straightforward:
y = log(x)
Here:
x
represents the input value for which you want to calculate the natural logarithm. It can be a scalar, a vector, a matrix, or an array.y
represents the output, which is the natural logarithm ofx
.
The function takes a single argument, x
, and returns its natural logarithm.
Basic Usage with Scalar Values
Let's illustrate the basic usage of the log()
function with scalar values. Open your MATLAB environment and try the following examples:
>> log(1)
ans =
0
>> log(2.7183) % Approximately e
ans =
0.9999
>> log(10)
ans =
2.3026
As you can see, the log()
function readily provides the natural logarithm of the input value. Remember that log(1)
is always 0 because e0 = 1.
Calculating Natural Logs of Different Numbers
The log()
function handles various types of numbers, including decimals and, interestingly, negative numbers. Let's explore these cases:
Decimals
Calculating the natural log of decimal numbers is just as simple:
>> log(0.5)
ans =
-0.6931
>> log(0.1)
ans =
-2.3026
The natural logarithm of a number between 0 and 1 is negative. This is because e must be raised to a negative power to obtain a value less than 1.
Negative Numbers and Complex Results
What happens when we attempt to calculate the natural logarithm of a negative number?
>> log(-1)
ans =
0.0000 + 3.1416i
MATLAB returns a complex number.
This result arises from the fact that the natural logarithm of a negative number involves imaginary components. In particular, log(-1)
is equal to iπ, where i is the imaginary unit (√-1) and π is pi (approximately 3.1416).
This behavior stems from Euler's formula, which connects complex exponentials to trigonometric functions. When MATLAB encounters the natural log of a negative number, it leverages complex number theory to provide a mathematically sound result. Understanding this behavior is crucial for interpreting results when dealing with potentially negative inputs.
Applying log() to Vectors, Matrices, and Arrays
Having explored the fundamental application of the log()
function with scalar values, it's time to expand our understanding to encompass more complex data structures within MATLAB. The true power of MATLAB lies in its ability to perform operations on entire collections of numbers at once, and the log()
function is no exception. Let's delve into how it seamlessly integrates with vectors, matrices, and arrays.
Understanding Element-Wise Operations
The cornerstone of applying log()
to these data structures is the concept of element-wise operations. MATLAB automatically applies the log()
function to each individual element within the vector, matrix, or array. This implicit looping eliminates the need for manual iteration, significantly simplifying code and improving efficiency.
The result of applying log()
to a non-scalar variable is a new variable of the same size and shape, with each element containing the natural logarithm of the corresponding element in the original variable.
Vectors and the log()
Function
Vectors, whether row or column vectors, are one-dimensional arrays of numbers. Applying the log()
function to a vector is straightforward. Let's look at some examples.
>> v = [1, 2, 3, 4, 5];
>> log(v)
ans =
0 0.6931 1.0986 1.3863 1.6094
As you can observe, the log()
function has calculated the natural logarithm of each element in the vector v
, and returned a new vector of the same size, containing the results.
This also applies to column vectors:
>> v = [1; 2; 3; 4; 5]; % Column vector
>> log(v)
ans =
0
0.6931
1.0986
1.3863
1.6094
Matrices and the log()
Function
Matrices extend the concept to two dimensions. The log()
function, when applied to a matrix, operates on each element individually, just like with vectors.
Consider this example:
>> A = [1 2; 3 4];
>> log(A)
ans =
0 0.6931
1.0986 1.3863
The resulting matrix has the same dimensions as the original matrix A
, with each element now representing the natural logarithm of its corresponding element in A
.
Arrays and the log()
Function
The application of log()
extends naturally to multi-dimensional arrays. Regardless of the number of dimensions, MATLAB processes the array element-wise.
For instance:
>> B = rand(2,2,2); % A 2x2x2 array of random numbers
>> log(B)
ans(:,:,1) =
-0.3567 -1.7126
-0.7080 -0.4608
ans(:,:,2) =
-0.3012 -0.2423
-1.4764 -0.7551
Here, B
is a three-dimensional array. The log()
function computes the natural logarithm of each element, resulting in an array ans
of the same size, with each element transformed accordingly.
Practical Implications and Considerations
Understanding how log()
operates on different data structures is essential for several reasons:
-
Data Transformation: It allows for easy scaling and transformation of datasets, a common requirement in data analysis and machine learning.
-
Code Efficiency: The element-wise operation eliminates the need for explicit loops, making your MATLAB code more concise and efficient.
-
Mathematical Modeling: In simulations and mathematical models, applying the
log()
function to entire vectors or matrices can greatly simplify complex calculations.
When working with large datasets, the efficiency of element-wise operations becomes even more critical. MATLAB's optimized implementation ensures that the log()
function operates swiftly, even on substantial arrays.
Real-World Applications: Unleashing the Power of Natural Logs in MATLAB
Having established a firm grasp on the mechanics of the log()
function and its interaction with various data structures in MATLAB, it's time to explore how this knowledge translates into solving real-world problems. The natural logarithm isn't just a mathematical curiosity; it's a powerful tool that unlocks solutions across diverse domains.
Solving Exponential Equations
Exponential equations, where the unknown appears as an exponent, are prevalent in fields ranging from finance to physics. The natural logarithm provides a direct method for isolating the variable.
Consider an equation of the form a = bx. To solve for x, we can take the natural logarithm of both sides:
ln(a) = ln(bx)
Using the logarithmic identity ln(bx) = x ln(b)
**, the equation becomes:
ln(a) = x ln(b)**
Therefore, x = ln(a) / ln(b).
In MATLAB, this process is streamlined:
a = 10;
b = 2;
x = log(a) / log(b);
disp(x); % Output: 3.3219
This simple example demonstrates how MATLAB, combined with the log()
function, efficiently solves for unknowns in exponential relationships.
Analyzing Data with Logarithmic Scales
Logarithmic scales are indispensable when dealing with data that spans several orders of magnitude. They allow us to visualize and analyze data more effectively by compressing the range of values.
Common applications include:
-
Frequency analysis in audio processing: Displaying the frequency spectrum of a sound signal.
-
Earthquake magnitudes on the Richter scale: Representing the intensity of seismic events.
-
Decibel scales in acoustics and electronics: Quantifying signal strength.
MATLAB facilitates the creation and manipulation of logarithmic scales. For example, plotting data on a log scale is easily accomplished using the semilogx
, semilogy
, and loglog
functions.
Consider analyzing the frequency response of a filter. The magnitude of the response, often expressed in decibels (dB), is calculated using the logarithm:
Magnitude (dB) = 20 log10(Amplitude)**
MATLAB code to generate and plot this data would look like:
frequencies = logspace(1, 4, 100); % Frequencies from 10 Hz to 10 kHz
amplitudes = 1 ./ (1 + (frequencies/1000).^2); % Example filter response
magnitude_db = 20** log10(amplitudes);
semilogx(frequencies, magnitude_db); xlabel('Frequency (Hz)'); ylabel('Magnitude (dB)'); title('Filter Frequency Response'); grid on;
This showcases the ease of analyzing data using logarithmic scales within MATLAB. The key here is to understand when a log scale is appropriate and how to interpret the resulting visualizations.
Signal Processing Applications
The natural logarithm plays a crucial role in various signal processing techniques. One prominent example is the cepstrum analysis, used for speech recognition and echo removal.
The cepstrum is essentially the inverse Fourier transform of the logarithm of the signal's power spectrum. Taking the logarithm allows for the separation of convolved signals, such as speech signals and their echoes.
MATLAB provides tools for implementing cepstral analysis. While the full implementation requires more advanced signal processing functions (like fft
and ifft
), the log()
function remains a fundamental component.
Another application involves compressing the dynamic range of audio signals. Applying a logarithmic transformation to audio data can reduce the difference between loud and quiet sections, making the signal more suitable for certain applications.
Growth and Decay Problems
Many natural phenomena exhibit exponential growth or decay. Population growth, radioactive decay, and compound interest are prime examples. The natural logarithm is instrumental in modeling and analyzing these processes.
Consider a population that grows exponentially according to the equation:
P(t) = P0 ekt
**
Where:
-
P(t) is the population at time t.
-
P0 is the initial population.
-
k is the growth rate constant.
To determine the time it takes for the population to double, we set P(t) = 2 P0 and solve for t**:
2 P0 = P0 ekt
2 = ekt
Taking the natural logarithm of both sides:
ln(2) = kt
Therefore, t = ln(2) / k.
In MATLAB:
k = 0.05; % Example growth rate
t = log(2) / k;
disp(t); % Output: 13.8629 (time to double)
This illustrates how MATLAB, in conjunction with the log()
function, simplifies the analysis of growth and decay phenomena. It allows for quick calculations and simulations of these processes, providing valuable insights into their behavior.
Having witnessed the power of natural logarithms in action, from solving exponential equations to dissecting complex datasets, it's essential to acknowledge that working with the log()
function isn't always a walk in the park. Just like any mathematical operation in a computational environment, it comes with its own set of potential pitfalls. Understanding these potential errors and knowing how to gracefully handle them is crucial for writing robust and reliable MATLAB code.
Error Handling and Special Cases: Navigating Potential Pitfalls
When wielding the log()
function in MATLAB, you're not just performing a mathematical operation; you're interacting with a system that adheres to specific rules and limitations. Failing to account for these can lead to unexpected results, error messages, or even program crashes. A robust understanding of potential error scenarios and the appropriate handling techniques are therefore paramount for producing reliable code.
Understanding Potential Error Scenarios
Several common situations can trigger errors or unexpected outputs when using the log()
function. These primarily revolve around the function's domain restrictions, which dictate the acceptable input values. Let's delve into some of these scenarios:
- Logarithm of Zero: Attempting to calculate
log(0)
results in negative infinity (-Inf
). While not strictly an error, it's a special case that requires careful consideration. - Logarithm of Negative Numbers: The natural logarithm is undefined for negative real numbers. MATLAB, however, returns a complex number when
log()
is applied to a negative value. - Complex Numbers: While MATLAB can handle complex numbers, it's important to be aware of the implications when they arise from the
log()
function. - Data Type Issues: Passing an inappropriate data type (e.g., a string) to the
log()
function will result in an error.
These scenarios demand a proactive approach to error handling. Let's explore how to manage them effectively.
The Natural Log of Zero or Negative Numbers
The natural logarithm, by definition, is only defined for positive real numbers. Attempting to calculate the natural logarithm of zero or a negative number presents unique challenges.
Handling log(0)
In MATLAB, calculating log(0)
doesn't throw an outright error. Instead, it returns -Inf
, which represents negative infinity.
While this might seem like a clear-cut outcome, it's vital to consider the context of your application. -Inf
can propagate through subsequent calculations, potentially leading to further unexpected results.
- Checking for Zero Values: Before applying the
log()
function, implement checks to identify zero values. - Conditional Logic: Use
if
statements to handle zero values separately, perhaps assigning a minimum positive value or issuing a warning.
Handling log(negative number)
When you attempt to find the natural log of a negative number, MATLAB returns a complex number. This is mathematically correct but might not be what you intend in all situations.
- Absolute Values: If the sign is irrelevant, use the
abs()
function to take the absolute value of the number before applyinglog()
. - Complex Number Awareness: If you are working with real data and receiving complex numbers, this means that your inputs are outside the domain where your model is valid. It is important to halt any analysis if the inputs are outside the domain of validity.
Dealing with Inf
and NaN
Results
The values Inf
(Infinity) and NaN
(Not-a-Number) are special floating-point values that can arise from various mathematical operations, including those involving the log()
function. Understanding how to handle these values is crucial for maintaining the integrity of your calculations.
-
Inf
: As seen withlog(0)
,Inf
can result from division by zero or other operations that produce extremely large numbers. -
NaN
:NaN
typically arises from operations that are mathematically undefined, such as0/0
orInf - Inf
.
Strategies for Managing Inf
and NaN
isnan()
andisinf()
Functions: MATLAB provides theisnan()
andisinf()
functions to detectNaN
andInf
values, respectively. Use these functions to identify problematic values within your data.- Conditional Replacement: Replace
NaN
orInf
values with more appropriate values, such as zero, the mean of the data, or a predefined threshold. Consider the context of your data when choosing a replacement strategy. - Data Cleaning: Examine your data for potential sources of
NaN
orInf
values, such as missing data or erroneous measurements. Implement data cleaning techniques to address these issues. - Error Trapping: Use
try-catch
blocks to gracefully handle potential errors that might lead toNaN
orInf
values. This allows you to prevent your program from crashing and provide informative error messages.
By anticipating potential errors and implementing robust handling strategies, you can ensure that your MATLAB code remains reliable and produces accurate results, even when working with the intricacies of the natural logarithm.
Having witnessed the power of natural logarithms in action, from solving exponential equations to dissecting complex datasets, it's essential to acknowledge that working with the log()
function isn't always a walk in the park. Just like any mathematical operation in a computational environment, it comes with its own set of potential pitfalls. Understanding these potential errors and knowing how to gracefully handle them is crucial for writing robust and reliable MATLAB code.
log() vs. log10() and log2(): Choosing the Right Logarithmic Function
MATLAB provides several built-in functions for calculating logarithms, each with a different base. While log()
is dedicated to the natural logarithm (base e), log10()
and log2()
calculate logarithms with base 10 and base 2, respectively. Understanding the distinctions between these functions and knowing when to employ each one is crucial for efficient and accurate problem-solving in MATLAB.
Understanding the Different Logarithmic Functions
The core difference lies in the base of the logarithm each function calculates:
-
log(x)
: Calculates the natural logarithm ofx
(base e ≈ 2.71828). This is the most frequently used logarithmic function in many scientific and engineering applications due to its close relationship with exponential functions and its prevalence in calculus. -
log10(x)
: Calculates the common logarithm ofx
(base 10). Historically significant due to its use in manual calculations and still relevant in fields like signal processing (decibels) and chemistry (pH scales). -
log2(x)
: Calculates the base-2 logarithm ofx
. Commonly used in computer science, information theory, and digital signal processing, where binary representations and powers of 2 are fundamental.
When to Use Which Logarithmic Function
The choice of logarithmic function depends entirely on the specific problem and the desired base:
-
Use
log()
when: You're working with exponential growth or decay models that are naturally expressed in terms of e, solving differential equations, or performing calculations that involve calculus. Many theoretical models and mathematical derivations are based on natural logarithms. -
Use
log10()
when: Your application involves decibels (dB), signal strength measurements, or chemical pH calculations. These fields traditionally use base-10 logarithms.log10()
is also useful when dealing with data that spans several orders of magnitude, as it compresses the range of values. -
Use
log2()
when: Your work is related to binary data, bit manipulation, or information content. For instance, calculating the number of bits required to represent a certain number of states or analyzing the efficiency of algorithms often involves base-2 logarithms.
Practical Examples: Scenarios and Applications
Consider these scenarios to illustrate when each function is most appropriate:
-
Scenario 1: Radioactive Decay: Modeling the decay of a radioactive substance, where the decay rate is proportional to the amount of substance remaining, often involves natural logarithms. Hence,
log()
would be the appropriate function. -
Scenario 2: Audio Signal Processing: Calculating the signal-to-noise ratio (SNR) in decibels requires the use of
log10()
. The decibel scale is inherently based on powers of 10, making the common logarithm a natural choice. -
Scenario 3: Data Compression: Determining the theoretical limit of data compression using Shannon's source coding theorem involves calculations based on base-2 logarithms.
log2()
is essential in this context for quantifying information content in bits.
A Word on Base Conversion
While MATLAB provides dedicated functions for common bases, you can always calculate logarithms to any arbitrary base using the change-of-base formula:
log_b(x) = log(x) / log(b)
Where log_b(x)
is the logarithm of x
to base b
, and log()
represents the natural logarithm. This formula allows you to compute logarithms to any base using the log()
function, providing flexibility when dealing with less common logarithmic scales.
Having witnessed the power of natural logarithms in action, from solving exponential equations to dissecting complex datasets, it's essential to acknowledge that working with the log()
function isn't always a walk in the park. Just like any mathematical operation in a computational environment, it comes with its own set of potential pitfalls. Understanding these potential errors and knowing how to gracefully handle them is crucial for writing robust and reliable MATLAB code.
Advanced Techniques and Best Practices for Using log()
Beyond the fundamental application of the log()
function lies a realm of advanced techniques and best practices that can significantly enhance the efficiency, readability, and maintainability of your MATLAB code. These techniques range from leveraging MathWorks resources to optimizing code for performance.
The Indispensable Role of MathWorks Resources
MathWorks stands as the primary authority on all things MATLAB, providing comprehensive documentation, tutorials, and support resources.
- Documentation: The official MATLAB documentation is an invaluable resource. Here, you'll find detailed explanations of the
log()
function, including its syntax, optional arguments, and behavior with different data types. Explore examples and use cases. This will deepen your understanding and broaden your application of the function. - Community Support: The MATLAB community forums are a hub for users of all levels. These platforms allow you to ask questions, share code snippets, and learn from the experiences of others. Searching the forums for
log()
-related topics can often provide solutions to common problems and insights into advanced usage scenarios. - Example Code: MathWorks provides a wealth of example code that demonstrates how to use the
log()
function in various contexts. These examples can serve as a starting point for your own projects, helping you to quickly implement logarithmic calculations in your MATLAB code.
Optimizing Code for Performance
When working with large datasets or computationally intensive tasks, optimizing your code becomes critical. Here's how to enhance the performance of the log()
function in MATLAB:
Vectorization
MATLAB is designed for vectorized operations, which are significantly faster than iterative loops. Instead of calculating the natural logarithm of each element in a matrix individually using a for
loop, apply the log()
function directly to the entire matrix. MATLAB will automatically perform the calculation element-wise in a highly optimized manner.
For example, avoid this:
result = zeros(size(data));
for i = 1:numel(data)
result(i) = log(data(i));
end
Instead, use:
result = log(data);
Preallocation
When creating arrays to store the results of logarithmic calculations, preallocate the array memory before performing the calculations. This prevents MATLAB from dynamically resizing the array, which can be a time-consuming operation, especially for large arrays.
data = rand(1, 100000); % Example data
result = zeros(size(data)); % Preallocate the result array
result = log(data); % Perform the calculations
Utilizing Efficient Algorithms
In some cases, you might be able to leverage more efficient algorithms for calculating logarithms, especially when dealing with specialized data or constraints.
Consider exploring alternative approaches, such as lookup tables or approximation techniques, if the standard log()
function proves to be a bottleneck in your code. However, be mindful of the trade-offs between accuracy and performance when using these methods.
Profiling and Benchmarking
MATLAB provides profiling tools that allow you to identify the most time-consuming parts of your code. Use these tools to pinpoint where the log()
function is impacting performance and experiment with different optimization techniques to see which ones yield the best results.
Benchmarking your code with different input data sizes can also help you to understand how the performance of the log()
function scales with the amount of data being processed.
Video: Natural Log in MATLAB: The Ultimate Guide You Need!
FAQs: Natural Log in MATLAB
This section answers common questions about using the natural log function in MATLAB.
What's the difference between log
and log10
in MATLAB?
In MATLAB, log(x)
computes the natural log (base e) of x. This is the logarithm that uses Euler's number (e ≈ 2.71828) as its base. log10(x)
on the other hand, calculates the common logarithm (base 10) of x. So when we want the natural log in matlab, use the log
function.
How do I calculate the natural log of a complex number in MATLAB?
MATLAB handles complex numbers directly with the log
function. When log
is applied to a complex number, it returns the complex natural logarithm. The result will have a real and an imaginary component.
What happens if I try to take the natural log of a negative number using log
in MATLAB?
MATLAB will return a complex number. The natural log of a negative number is not a real number. MATLAB represents it as a complex number with a real part and an imaginary part.
Is there a way to specify the base for the logarithm if I don't want the natural log in MATLAB?
No, there is no direct function in MATLAB that lets you specify the base of the logarithm like log_base(x, base)
. To calculate the logarithm of a number x
to a different base b
, you can use the change of base formula: log(x) / log(b)
. Remember that log
still means the natural log in matlab here.