Scientific Computing Articles

Found 27 articles

How Edge Computing and 5G will Help IoT?

Mr. Satyabrata
Mr. Satyabrata
Updated on 21-Oct-2024 215 Views

Edge computing & 5G are two of the most essential technologies & the mixture of these two technologies has a high potential to transform the way IoT devices work, causing them more efficient, faster, & more reliable. In this article, we will examine how edge computing and 5G will help IoT. What is Edge Computing? A distributed computing paradigm known as edge computing enables data processing and storage to be carried out near the data sources, such as IoT devices, sensors, and mobile devices. This strategy aims to minimize latency, decrease bandwidth usage, & enhance overall performance & ...

Read More

Why Both Cloud and Edge Computing Essential for IoT?

Mr. Satyabrata
Mr. Satyabrata
Updated on 29-Aug-2023 476 Views

The use of Internet of Things (IoT) devices conveys huge support to both businesses & consumers. However, this rapid growth is putting a lot of stress on traditional data center infrastructure. To address this, edge computing is evolving more prevalent. As it enables processing power to be closer to the devices that generate or consume data. This article will provide an introduction to the fundamentals of IoT, Cloud & edge computing & discuss the key reasons why they are a good fit. What is Edge Computing? Edge computing is a method of decentralizing IoT devices by ...

Read More

Difference Between Systematic Error and Random Error

Vineet Nanda
Vineet Nanda
Updated on 26-Apr-2023 3K+ Views

In scientific research, errors can occur during the measurement of data that can affect the accuracy and reliability of the results. These errors can be classified into two categories: systematic error and random error. While both types of errors can affect the accuracy of research findings, they differ in terms of their nature, causes, and consequences. This essay aims to provide a detailed explanation of the difference between systematic error and random error. What is Systematic Error? Systematic errors are caused by flaws in the measurement process that consistently bias the results in a particular direction. These errors are often ...

Read More

Create a gauss pulse using scipy.signal gausspulse

Tamoghna Das
Tamoghna Das
Updated on 20-Apr-2023 1K+ Views

What are the uses of gauss pulse? Gaussian pulses are widely used in signal processing, particularly in radar, sonar, and communications. This pulse is a pulse that has a Gaussian shape in the time domain, which makes it useful for detecting small signals that may be obscured by noise. In this tutorial, we will explore how to generate a Gaussian pulse using the scipy.signal.gausspulse function. What is a Gaussian Pulse? Gaussian pulses are a type of function that has a Gaussian-shaped envelope in the time domain. The Gaussian function is a bell-shaped curve that is symmetrical around its peak. It ...

Read More

Python – scipy.linalg.norm

Syed Abeed
Syed Abeed
Updated on 22-Dec-2021 644 Views

The norm() function of the scipy.linalg package is used to return one of eight different matrix norms or one of an infinite number of vector norms.Syntaxscipy.linalg.norm(x)Where x is an input array or a square matrix.Example 1Let us consider the following example −# Importing the required libraries from scipy from scipy import linalg import numpy as np # Define the input array x = np.array([7 , 4]) print("Input array:", x) # Calculate the L2 norm r = linalg.norm(x) # Calculate the L1 norm s = linalg.norm(x, 3) # Display the norm values print("Norm Value of r :", ...

Read More

Python – scipy.linalg.inv

Syed Abeed
Syed Abeed
Updated on 22-Dec-2021 445 Views

The scipy.linalg package contains a of different functionalities that are used for Linear Algebra. One of them is the inv() function, which is used to find the inverse of a square matrix.Syntaxscipy.linalg.inv(x)Where x is a square matrix.Example 1Let us consider the following example −# Import the required libraries from scipy import linalg import numpy as np # defines the array a = np.array([[5, 3], [6, 4]]) print("Input matrix :", a) # Finding the inverse of a square matrix x = linalg.inv(a) print(" Inverse of Square Matrix A :", x)OutputThe above program will generate the following output −Input matrix ...

Read More

Python – scipy.linalg.det

Syed Abeed
Syed Abeed
Updated on 22-Dec-2021 361 Views

The scipy.linalg package contains a set of different functionalities that are used for Linear Algebra. One of them is the det() function. This function is used to find the determinant of a two-dimensional matrix.Syntaxscipy.linalg.det(x)Where x is a square matrix.Example 1Let us consider the following example −# Importing the required libraries from scipy import linalg import numpy as np # Initialize the matrix A A = np.array([[8, 5], [3, 4]]) print("Input Matrix :", A) # Find the determinant of matrix X x = linalg.det(A) print("Determinant Value of A:", x)OutputIt will generate the following output −Input Matrix : [[8 5] ...

Read More

Python – scipy.special.logsumexp

Syed Abeed
Syed Abeed
Updated on 22-Dec-2021 2K+ Views

The scipy.special package contains a set of different functionalities that are used for mathematical physics. One of them is the logsumexp() function. This function is used to compute the log of the sum of exponentials of input elements. Let us take a couple of examples and see how to use this function.Syntaxscipy.special.logsumexp(x)where, x is the input value.Example 1Let us consider the following example −# Import logsumexp from scipy.special from scipy.special import logsumexp import numpy as np # Input array a = np.arange(10) print("Input Array:", a) # logsum() function res = logsumexp(a) print("logsumexp of a:", res)OutputIt will produce the ...

Read More

SciPy is built upon which core packages?

Gaurav Kumar
Gaurav Kumar
Updated on 14-Dec-2021 278 Views

SciPy is built upon the following core packages −Python − Python, a general-purpose programming language, is dynamically typed and interpreted. It is well suited for interactive work and quick prototyping. It is also powerful to write AI and ML applications.NumPy − NumPy is a base N-dimensional array package for SciPy that allows us to efficiently work with data in numerical arrays. It is the fundamental package for numerical computation.Matplotlib − Matplotlib is used to create comprehensive 2-dimensional charts and plots from data. It also provides us basic 3-dimensional plotting.The SciPy library − It is one of the core packages providing us many user-friendly and ...

Read More

What are various sub-packages in Python SciPy library?

Gaurav Kumar
Gaurav Kumar
Updated on 14-Dec-2021 1K+ Views

To cover different scientific computing domains, SciPy library is organized into various sub-packages. These sub-packages are explained below −Clustering package (scipy.cluster) − This package contains clustering algorithms which are useful in information theory, target detection, compression, communications, and some other areas also. It has two modules namely scipy.cluster.vq and scipy.cluster.hierarchy. As the name entails, the first module i.e., vq module supports only vector quantization and k-meansalgorithms. Whereas the second module i.e., hierarchy module provides functions for agglomerative and hierarchical clustering.Constants(scipy.constants) − It contains mathematical and physical constants. Mathematical constants include pi, golden and golden_ratio. Physical constants include c, speed_of_light, planck, gravitational_constant, etc.Legacy ...

Read More
Showing 1–10 of 27 articles
« Prev 1 2 3 Next »
Advertisements