ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

98 results

ThInKs We KnOw
Python Code: reshaping 2D array into 3D and 1D Arrays in NumPy (Code in Description Box) #numpy

import numpy as np # Base 2D Array (4x3) arr_2d = np.array([ [1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12] ]) print(f"Base 2D ...

1:31
Python Code: reshaping 2D array into 3D and 1D Arrays in NumPy (Code in Description Box) #numpy

0 views

15 hours ago

ThInKs We KnOw
arange and reshape function to create 2D and 3D arrays in NumPy #datascience #numpy #python

TOPIC: Creating 2D & 3D Arrays using NumPy arange. PROCESS: Combine np.arange() to generate data and .reshape() to set ...

0:56
arange and reshape function to create 2D and 3D arrays in NumPy #datascience #numpy #python

0 views

14 hours ago

swedz
How To Make a Wallhack For Any Game In Python

swedz #cheatengine #python Learn How To Make Your Very Own Wallhack For Any Game Video Overview: One last ...

15:52
How To Make a Wallhack For Any Game In Python

19,957 views

3 days ago

Coding Together
I Should have learned THIS earlier in Python

In this video, I will explain you how the two pointer method works to do a sum algorithm in Python. This is a simple but powerful ...

1:18
I Should have learned THIS earlier in Python

0 views

2 days ago

ThInKs We KnOw
Python Code: NumPy 2D Array Slicing with Negative Indexing (Code in Description Box) #numpy #python

import numpy as np # ========================================== # NumPy 2D Array Negative Slicing (from the ...

1:07
Python Code: NumPy 2D Array Slicing with Negative Indexing (Code in Description Box) #numpy #python

6 views

2 days ago

ThInKs We KnOw
Python Code: NumPy 2D Array Slicing with Positive Index (Codes in Description Box) #python #numpy

import numpy as np # ========================================== # NumPy 2D Array Slicing ...

1:11
Python Code: NumPy 2D Array Slicing with Positive Index (Codes in Description Box) #python #numpy

4 views

2 days ago

ThInKs We KnOw
Lec 8: NumPy Array Indexing and Slicing #datascience #datascienceforbeginners #numpy #python

here is the content on NumPy indexing, slicing, and iterating for 1D, 2D, and 3D arrays. 1. Array Indexing NumPy indexing is used ...

6:27
Lec 8: NumPy Array Indexing and Slicing #datascience #datascienceforbeginners #numpy #python

33 views

4 days ago

ThInKs We KnOw
Reshaping of 2D Array in NumPy #numpy #python #datascience #datascienceforbeginners

TOPIC: NumPy Reshape 2D Arrays: Examples & Rules. Key Rule: Total number of elements must remain constant. Original 2D ...

1:02
Reshaping of 2D Array in NumPy #numpy #python #datascience #datascienceforbeginners

5 views

1 day ago

ThInKs We KnOw
Reshaping 3D Array into 2D and 1D Arrays in NumPy #numpy #python #datascience #engineeringstudent

TOPIC: NumPy Reshape: 3D to 2D & 1D Arrays (Examples). Key Rule: Total elements must remain constant. Original 3D Array ...

1:17
Reshaping 3D Array into 2D and 1D Arrays in NumPy #numpy #python #datascience #engineeringstudent

10 views

1 day ago

ThInKs We KnOw
Reshaping 2D Array into 3D Arrays in NumPy #datascience #numpy #python #datascienceforbeginners

TOPIC: NumPy Reshape: 2D to 3D Arrays (Examples). Key Rule: Total elements must remain constant. Original 2D Array (arr): ...

1:08
Reshaping 2D Array into 3D Arrays in NumPy #datascience #numpy #python #datascienceforbeginners

6 views

1 day ago

ThInKs We KnOw
NumPy 2D Array Slicing with Negative Indexing #numpy #arrayslicing #python #datascienceforbeginners

This infographic demonstrates various methods for slicing a two-dimensional NumPy array using negative indexing, based on a ...

1:38
NumPy 2D Array Slicing with Negative Indexing #numpy #arrayslicing #python #datascienceforbeginners

6 views

2 days ago

ThInKs We KnOw
Python Code: NumPy Array Iteration of 1D, 2D, & 3D Arrays (Code in Description) #numpy #python

import numpy as np # ========================================== # NumPy Array Iteration: `for` LOOPS ...

1:24
Python Code: NumPy Array Iteration of 1D, 2D, & 3D Arrays (Code in Description) #numpy #python

112 views

2 days ago

spr2006
sinewave bottle

Modeling a sinewave wrapped bottle python code: from openscad4 import * # 2d section s1=circle(20) # 2d path p1=cr2dt([[-5,0] ...

15:33
sinewave bottle

0 views

7 days ago

Satyam
Numpy Tutorial

Timestamps 00:00 - Introduction & Importance of NumPy 00:47 - Understanding Data Types (Python list vs. NumPy array) 01:30 ...

28:14
Numpy Tutorial

24 views

7 days ago

ThInKs We KnOw
NumPy Array Iteration of 1D, 2D & 3D arrays #numpy #python #datascience #datascienceforbeginners

This infographic visualizes the mechanics of iterating through NumPy arrays of varying dimensions using standard Python for ...

1:09
NumPy Array Iteration of 1D, 2D & 3D arrays #numpy #python #datascience #datascienceforbeginners

192 views

2 days ago

ThInKs We KnOw
Reshaping Arrays in NumPy #numpy #python #datascience #datascienceforbeginners

This transforms the array into a 2D matrix with 3 rows and 4 columns. The total number of elements (3 * 4 = 12) is conserved. 2.

1:37
Reshaping Arrays in NumPy #numpy #python #datascience #datascienceforbeginners

11 views

1 day ago

ThInKs We KnOw
Reshaping 1D Array into 2D and 3D Arrays in NumPy #python #numpy #datascienceforbeginners

TOPIC: Reshaping 1D NumPy Arrays. Original shape: (12,). Ex 1: arr.reshape(3, 4) - Creates 3 rows, 4 columns.

0:32
Reshaping 1D Array into 2D and 3D Arrays in NumPy #python #numpy #datascienceforbeginners

9 views

1 day ago

ThInKs We KnOw
Types of Arrays in NumPy #datascience #datascienceforbeginners #python #numpy

Actual syntax examples to create every type of array from scratch. Pro Tip: You will use 1D and 2D arrays 90% of the time, but ...

0:46
Types of Arrays in NumPy #datascience #datascienceforbeginners #python #numpy

965 views

5 days ago

ThInKs We KnOw
Python Code: reshaping 3D array into 2D and 1D Arrays in NumPy (Code in Description Box) #numpy

import numpy as np # Base 3D Array (2x2x3) arr_3d = np.array([ [[1, 2, 3], [4, 5, 6]], [[7, 8, 9], [10, 11, 12]] ]) print(f"Base 3D ...

1:21
Python Code: reshaping 3D array into 2D and 1D Arrays in NumPy (Code in Description Box) #numpy

0 views

15 hours ago

ThInKs We KnOw
Python Code: reshape function in NumPy Array (Code in Description Box) #numpy #python #datascience

import numpy as np # Base Array (12 elements) arr = np.arange(1, 13) print(f"Base Array: {arr}\n") # Example 1: Reshape 1D to 2D ...

1:41
Python Code: reshape function in NumPy Array (Code in Description Box) #numpy #python #datascience

0 views

15 hours ago