Sunidhi Bansal has Published 1085 Articles

scalbn() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:26:42

86 Views

In this article we will be discussing the working, syntax and examples of scalbn() function in C++ STL.What is scalbn()?scalbn() function is an inbuilt function in C++ STL, which is defined in the header file. scalbn() function is used to scale significantly using the floating point base exponent.Significand is ... Read More

nearbyint() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:22:48

72 Views

In this article we will be discussing the working, syntax and examples of nearbyint() function in C++ STL.What is nearbyint()?nearbyint() function is an inbuilt function in C++ STL, which is defined in header file. nearbyint() function is used to get the round integral value as per the input.The function ... Read More

norm() function in C++ with Examples

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:20:54

1K+ Views

In this article we will be discussing the working, syntax and examples of norm() function in C++ STL.What is norm()?norm() function is an inbuilt function in C++ STL, which is defined in header file. norm() function is used to get the norm value of a complex number.Norm value of ... Read More

max() function for valarray in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:19:05

294 Views

In this article we will be discussing the working, syntax and examples of valarray::max() function in C++ STL.What is a valarray?std::valarray is a class which is used for representing, modifying the array of values, which supports elements-wise mathematical operations.What is valarray::max()?std::valarray::max() function is an inbuilt function in C++ STL, which ... Read More

localtime() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:17:05

245 Views

In this article we will be discussing the working, syntax and examples of localtime() function in C++ STL.What is localtime()?localtime() function is an inbuilt function in C++ STL, which is defined in the header file. localtime() is used to convert the given time into the local time.This function uses ... Read More

exp2() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:14:27

164 Views

In this article we will be discussing the working, syntax and examples of std::exp2() function for complex numbers in C++ STL.What is std::exp2()?std::exp2() function for complex numbers is an inbuilt function in C++ STL, which is defined in or header file. exp2() function is used for computing the ... Read More

exp() function for complex number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:11:23

769 Views

In this article we will be discussing the working, syntax and examples of std::exp() function for complex numbers in C++ STL.What is std::exp()?std::exp() function for complex numbers is an inbuilt function in C++ STL, which is defined in a header file. exp() function for complex numbers is the same ... Read More

Error functions using cmath in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:09:03

325 Views

We are given the variable and the task is to find the probability of the variable using an error function available in C++ STL. This function is available in the cmath header file in C++.What is an Error function?Error function in mathematics is also known as Gauss error function which ... Read More

count_if() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:03:55

1K+ Views

In this article we will be discussing the working, syntax and examples of std::count_if() function in C++ STL.What is std::count_if()?std::count_if() function is an inbuilt function in C++ STL, which is defined in header file. count_if() is used to get the number of elements in a specified range which satisfy ... Read More

multiset equal_range() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:00:34

233 Views

In this article we will be discussing the working, syntax and examples of multiset::equal_range() function in C++ STL.What is a multiset in C++ STL?Multisets are the containers similar to the set container, meaning they store the values in the form of keys same like a set, in a specific order.In ... Read More

Advertisements