Showing posts with label Matlab tutorial. Show all posts
Showing posts with label Matlab tutorial. Show all posts

Monday, November 23, 2020

Saturday, November 21, 2020

, , ,

sprintf Function In MATLAB With Example Program

 stg = sprintf(formatSpec,B1,...,Bn) use to formats the data in an array with the help of  formatting operators which is specified by formatSpec in MATLAB and returns the resulting text in a define variable(stg) then stg known as output and otherwise stg is an character.MATLAB Program for...

Thursday, November 19, 2020

Wednesday, November 18, 2020

, , ,

fft matlab Function And ftt code with Example

 Fast Fourier transform of fft function in matlab.Syntax:- Y = fft(X) Y = fft(X,n) Y = fft(X,n,dim) Discprition for fft matlab Function If x is an vector then it will return the Fourier transform of that vector Let x is an matrix then fft(X) assume the colum as a vactory and return Fourier...

Tuesday, November 17, 2020

, ,

Learn about the Matlab linspace function With Example

 Matlab linspace is used to Generate linearly spaced vector.Syntax for Matlabn Linspace: - y = linspace(x1,x2) y = linspace(x1,x2,n)y = linspace(x1,x2) give a row vector which is made with the 100 points with equal distance between x1 and x2 y = linspace(x1,x2,n) return the n number of points...