Monday, November 30, 2020

, , ,

date difference function in sql with example program

 datediff sql function will helps to calculate the difference between two dates in week,year,months etc.datediff sql function accept the three arguments start_date, end_date and date_part. date_part is a part of the date like year months and week that's compare between the start_date and end_date.start_date...

Sunday, November 29, 2020

, ,

meshgrid MATLAB Function With It's example surface plot of a function.

meshgrid matlab Function:-Helps to generate X and Y matrices for three-dimensional plots.Syntax For meshgrid: - [X,Y] = meshgrid(x,y) [X,Y] = meshgrid(x) [X,Y,Z] = meshgrid(x,y,z)Description for meshgrid matlab Functionmeshgrid function will help to trans transforms the given domain which is specified...

Friday, November 27, 2020

,

ord()Function in python with it's example

 ord function in python is used to return an integer representing of Unicode character.Syntax:- ord(ch) Parameters For ord function in python This function take just only one perameter and that known as ch (a Unicode character) Return value The ord() function in python returns an integer representing...

Wednesday, November 25, 2020

, ,

hasattr() function in python with example

 Python hasattr() function in python return the true if the object gives the name of attribute and false if didn't return the name.Syntax for hasattr() hasattr(object, name) hasattr() in python called by the getattr() to check about the error Parameters For hasattr() function in python There are two parameters which is used for this function the first one is object whose name is going to be...

Tuesday, November 24, 2020

, , ,

Use of Range Function In Python With Program

 python range function in python return the sequence of numbers between the start integer value to the stop integer.Syntax : - range(stop) range(start, stop[, step]) Parameters For range() function in python:- Range function takes the three arguments which is given below :- first one is...

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