Tagged articles

complex numbers

6 articles · Page 1 of 1
php Courses
php Courses
Aug 20, 2025 · Fundamentals

Master C++ Operator Overloading: Make Your Classes Behave Like Built‑ins

This tutorial explains why and how to overload arithmetic and stream operators in C++, using a Complex class example to show member and friend function implementations, code snippets, and key concepts for making custom types as intuitive as built‑in types.

C#complex numbersoperator overloading
0 likes · 5 min read
Master C++ Operator Overloading: Make Your Classes Behave Like Built‑ins
php Courses
php Courses
Aug 19, 2023 · Backend Development

How to Use PHP's sqrt() Function to Calculate Square Roots

This article explains the PHP sqrt() function, demonstrates how to compute square roots for positive and negative numbers, shows how to cast the result to an integer, and highlights important usage considerations with clear code examples.

FunctionPHPcomplex numbers
0 likes · 5 min read
How to Use PHP's sqrt() Function to Calculate Square Roots
Python Crawling & Data Mining
Python Crawling & Data Mining
Dec 12, 2021 · Fundamentals

Unlock Python’s Numeric Types: Integers, Floats, Complex & Memory Tricks

This article explains Python’s numeric types—including integers, floats, and complex numbers—covers their immutability, memory representation such as the small integer object pool, demonstrates type conversion functions, and introduces the math library for basic scientific calculations, all illustrated with clear code examples.

FloatsIntegersMath Library
0 likes · 9 min read
Unlock Python’s Numeric Types: Integers, Floats, Complex & Memory Tricks