You are reading the article Learn The Different Examples Of Matlab Log updated in September 2023 on the website Benhvienthammyvienaau.com. We hope that the information we have shared is helpful to you. If you find the content interesting and meaningful, please share it with your friends and continue to follow and support us for the latest updates. Suggested October 2023 Learn The Different Examples Of Matlab Log
Introduction to Matlab logMatlab log method can be used to compute the natural logarithm or common logarithm of any number. It can also be used to compute the natural logarithm or common logarithm of an array of numbers or a matrix of numbers. Please keep in mind that a natural logarithm has “e” as its base, where “e” represents Euler’s number and has a value of 2.71828, and a common logarithm has 10 as its base.
Start Your Free Data Science Course
Hadoop, Data Science, Statistics & others
Syntax:
A = log (Number) is used to compute the natural logarithm (base “e)” of a number in Matlab. In the case of an array, we will get the natural logarithm of every element in the array.
A = log10 (Number) is used to compute the common logarithm (base 10) of a number in Matlab. In the case of an array, we will get the common logarithm of every element in the array.
Examples of Matlab logGiven below shows how to compute the natural logarithm in Matlab using the log method:
Example #1In this example, we will use the log method to compute the natural logarithm of a number.
The step to be followed for this example is:
Pass the number whose natural logarithm is required as an argument to the log method.
Code:
log(4)
[Passing 4 as an argument to the log method as we need its natural logarithm] [Mathematically, the log of 4 to the base “e” is 1.3863]
Input:
Output:
As we can see in the output, we have the log of 4 to the base “e” as 1.3863, which is the same as expected by us.
Example #2In this example, we will use the log method to compute the natural logarithm of the elements of an array.
The steps to be followed for this example are:
Initialize the array.
Pass the array as an argument to the log method.
Code:
A = [3 6 4 8 6 1] [Initializing the array whose natural logarithm is to be computed]
log(A)
[Passing the array as an argument to the log method]
[Passing the array as an argument to the log method]
This is how our input and output will look like in the Matlab command window:
Input:
Output:
As we can see in the output, we have obtained the log of all the elements in the array to the base “e”, as expected by us.
Example #3In this example, we will use the log method to compute the natural logarithm of the elements of a matrix.
The steps to be followed for this example are:
Initialize the matrix.
Pass the matrix as an argument to the log method.
Code:
A = [3 6 4; 8 6 1; 2 1 6] [Initializing the matrix whose natural logarithm is to be computed]
log(A)
[Passing the matrix as an argument to the log method]
[Passing the matrix as an argument to the log method]
This is how our input and output will look like in the Matlab command window:
Input:
Output:
As we can see in the output, we have obtained the log of all the elements in the matrix to the base “e”, as expected by us.
In the above 3 examples, we have computed the natural logarithm of numbers using the log method.
Next, we will compute the common logarithm of numbers using the log10 method.
Example #4In this example, we will use the log10 method to compute the common logarithm of a number.
The step to be followed for this example is:
Pass the number whose natural logarithm is required as an argument to the log method.
Code:
log10(5)
[Passing 5 as an argument to the log10 method as we need its common logarithm] [Mathematically, the log of 5 to the base “10” is 0.6990]
[Passing 5 as an argument to the log10 method as we need its common logarithm] [Mathematically, the log of 5 to the base “10” is 0.6990]
This is how our input and output will look like in the Matlab command window:
Input:
Output:
As we can see in the Output, we have the log of 5 to the base “10” as 0.6990, which is the same as expected by us.
Example #5In this example, we will use the log10 method to compute the common logarithm of the elements of an array.
The steps to be followed for this example are:
Initialize the array.
Pass the array as an argument to the log10 method.
Code:
A = [4 7 1 3 6 2] [Initializing the array whose common logarithm is to be computed]
log10(A)
[Passing the array as an argument to the log10 method]
Input:
Output:
As we can see in the output, we have obtained the log of all the elements in the array to the base “10”, as expected by us.
Example #6In this example, we will use the log10 method to compute the common logarithm of the elements of a matrix.
The steps to be followed for this example are:
Initialize the matrix.
Pass the matrix as an argument to the log10 method.
Code:
A = [2 5 4; 1 6 3; 6 3 7] [Initializing the matrix whose common logarithm is to be computed]
log10(A)
[Passing the matrix as an argument to the log10 method]
[Passing the matrix as an argument to the log10 method]
This is how our input and output will look like in the Matlab command window:
Input:
Output:
As we can see in the output, we have obtained the log of all the elements in the matrix to the base “10”, as expected by us.
ConclusionThe log method can be used in Matlab to compute the logarithm of a number, an array or a matrix. Both natural and common logarithm can be computed. It can be used to compute the logarithm of arrays and matrices as well.
Recommended ArticlesThis is a guide to the Matlab log. Here we discuss the introduction to Matlab log along with examples for better understanding. You may also have a look at the following articles to learn more –
You're reading Learn The Different Examples Of Matlab Log
Update the detailed information about Learn The Different Examples Of Matlab Log on the Benhvienthammyvienaau.com website. We hope the article's content will meet your needs, and we will regularly update the information to provide you with the fastest and most accurate information. Have a great day!