Samual Sam has Published 1475 Articles

rad2deg() function in PHP

Samual Sam

Samual Sam

Updated on 27-Dec-2019 07:02:47

98 Views

The rad2deg() function converts radian value to degree value. It Returns the equivalent of radia value val in degrees.Syntaxrad2deg(val)Parametersval − The radian value to be converted into degree.ReturnThe rad2deg() function Returns the equivalent of val in degrees.Example Live DemoOutput180ExampleLet us see another example − Live DemoOutput90ExampleLet us see another example − Live DemoOutput22.5Read More

pi() function in PHP

Samual Sam

Samual Sam

Updated on 27-Dec-2019 06:57:57

172 Views

The pi() function Returns the value of Pi (π).Syntaxpi()ParametersNAReturnThe pi() function Returns the approximate value of PI. This value is a floating point value.3.1415926535898Example Live DemoOutput3.1415926535898ExampleLet us see another example to get the value of PI Live DemoOutput3.1415926535898

max() function in PHP

Samual Sam

Samual Sam

Updated on 27-Dec-2019 06:53:28

185 Views

The max() function Returns the maximum value of an array.Syntaxmax(arr_values); or max(val1,val2,...);Parametersarr_values − The array with values.val1, val2 − The values to compare.ReturnThe max() function Returns the maximum value of an array.Example Live DemoOutput89ExampleLet us see another example − Live DemoOutput89

cosh() function in PHP

Samual Sam

Samual Sam

Updated on 26-Dec-2019 10:35:17

165 Views

The cosh() function Returns the hyperbolic cosine of a number. The value Returned is a floating point number.Syntaxcosh(num)Parametersnum − Specifies a number in radiansReturnThe cosh() function Returns the hyperbolic cosine of a number. The value Returned is a floating point number.Example Live DemoOutput1.54308063481521.5430806348152ExampleLet us see another example − Live DemoOutput1Example Live DemoOutput11.591953275522267.74676148375Read More

ceil() function in PHP

Samual Sam

Samual Sam

Updated on 26-Dec-2019 10:32:49

312 Views

The ceil() function rounds a number to the nearest integer. The value is rounded up to the nearest greatest integer.Syntaxceil(num)Parametersnum − The number to round upReturnThe ceil() function Returns the value rounded up to the nearest (up) integer.Example Live DemoOutput11ExampleLet us see another example − Live DemoOutput2ExampleLet us see another example − Live ... Read More

base_convert() function in PHP

Samual Sam

Samual Sam

Updated on 26-Dec-2019 10:31:17

141 Views

The base_convert() function converts a number from one base to another, for example, octal number to decimal number. The base mentioned here should be between 2 and 36. Digits in numbers with a base greater than 10 is represented with the letters a-z i.e a is 10, , d is ... Read More

atan2() function in PHP

Samual Sam

Samual Sam

Updated on 26-Dec-2019 10:28:28

158 Views

The atan2() function returns the arc tangent of two variables.Syntaxatan2(val1, val2)Parametersval1 − The dividendval2 − The divisorReturnThe atan2() function returns the arc tangent of val2/ val1 in radians. The returned value is between -Pi and Pi.Example Live DemoOutput0.785398163397450.78539816339745ExampleLet us see another example − Live DemoOutput-2.3561944901923-2.2318394956456

Inserting rows in an empty table to test output of ABAP code

Samual Sam

Samual Sam

Updated on 16-Dec-2019 06:51:16

595 Views

You can find the option to either insert a row into a table or change the content of the table using the Table tools/Table display services

How to Learn SAP ERP System?

Samual Sam

Samual Sam

Updated on 11-Dec-2019 09:23:50

567 Views

SAP Education provides training courses (authorized for training and certification) to learn SAP. Other training institutes are also there which are not official. We can also get SAP information from books and different websites like:https://www.tutorialspoint.com/sap_tutorials.htmOther sites that you can use to learn SAP are:https://help.sap.comhttps://scn.sap.comhttps://en.wikipedia.org/wiki/SAP_ERPYou also need to do practice with ... Read More

Creating Index in Column based tables in SAP HANA

Samual Sam

Samual Sam

Updated on 11-Dec-2019 07:37:47

2K+ Views

Note that an index not necessary to be NOT NULL. You can create an Index in SAP HANA database by using below query:CREATE INDEX IDX_MY_INDEX ON TABLE1 (MY_COLUMN);To know more about SAP HANA database, Modeling, and Administration features, you can refer our SAP HANA Text and Video tutorials:https://www.tutorialspoint.com/sap_hana/https://www.tutorialspoint.com/sap_hana_online_training/index.aspRead More

Advertisements