length() command or function gives the number of elements in a vector or length of largest matrix size, after reading this MATLAB length topic, you will know the theory and examples.
Syntax:
length(n)
Your Tutor
length() command or function gives the number of elements in a vector or length of largest matrix size, after reading this MATLAB length topic, you will know the theory and examples.
length(n)
reshape() command or function reshapes a matrix or vector, after reading this MATLAB Reshape topic, you will know the theory and examples.
reshape(n,a,b)
linspace( ) command or function creates a row vector with elements that are linearly (equally) spaced, after reading this MATLAB linspace topic, you will know the theory and examples.
linspace(xf,xl,n)
diag() command or function gives diagonal elements or creates a diagonal matrix, after reading this MATLAB diagonal matrix topic, you will know the theory and examples.
diag(n)
mean( ) command or function gives the mean or average value of vector or matrix or array elements, after reading this MATLAB mean topic, you will know the theory and examples.
mean(n)
mode( ) command or function gives the most repeated element of vector or matrix or array elements, after reading this MATLAB mode topic, you will know the theory and examples.
mode(n)
sum( ) command or function gives the sum value of vector or matrix or array elements, after reading this MATLAB sum topic, you will know the theory and examples.
sum(n)
std( ) command or function gives the standard deviation value of vector or matrix or array elements, after reading this MATLAB standard deviation topic, you will know the theory and examples.
std(n)
sort( ) command or function arranges vector or matrix or array elements in ascending order, after reading this MATLAB sort topic, you will know the theory and examples.
sort(n)
max( ) command or function gives the largest or maximum element of vector or matrix or array, after reading this MATLAB max topic, you will know the theory and examples.
max(n)