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

, , ,

frozenset() function in python With Example Code - Python Function

 The frozenset() function in python is an inbuilt function is Python.That Function takes an iterable object as input and makes them immutable. it freezes the iterable objects and makes them unchangeable.frozen sets can be helpful in  Dictionary it can be used as key because it remain...
, , ,

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...

Monday, November 16, 2020

, , ,

Example program for super function in python

 super() function in python return the proxy object it's also a temporary object of the superclass and this object help us to access the method of base class.Super function has two use :-This function Working with Multiple InheritanceHelp us to avoid base class name explicitlyExample of super function...

Saturday, November 14, 2020

, ,

Example program for setattr() function in Python

setattr() function in Python use to set the value of an attribute.setattr() function in Python Syntax : - setattr(object, name, value) If you want to read the object then use the getattr() function.Parameters For setattr():- It takes three parameters and these are:-Object : - the object...