Python - Add custom dimension in Matrix
Last Updated :
14 Mar, 2023
Sometimes, while working with Python Matrix, we can have a problem in which we need to add another dimension of custom values, this kind of problem can have problem in all kinds of domains such as day-day programming and competitive programming. Let's discuss certain ways in which this task can be performed.
Input : test_list = [(5, 6, 7, 8)] vals = [10] Output : [(5, 6, 7, 8, 10)] Input : test_list = [(5, ), (6, ), (7, ), (8, )] vals = [10, 9, 8, 7] Output : [(5, 10), (6, 9), (7, 8), (8, 7)]
Method #1 : Using zip() + list comprehension + "+" operator The combination of above functions can be used to solve this problem. In this, we use + operator to add an element and zip() is used to extend this logic to every row of Matrix.
Python3
# Python3 code to demonstrate working of
# Add custom dimension in Matrix
# Using zip() + list comprehension + "+" operator
# initializing list
test_list = [(5, 6), (1, 2), (7, 8), (9, 12)]
# printing original list
print("The original list is : " + str(test_list))
# initializing Column values
vals = [4, 5, 7, 3]
# Add custom dimension in Matrix
# Using zip() + list comprehension + "+" operator
res = [i + (j, ) for i, j in zip(test_list, vals)]
# printing result
print("The result after adding dimension : " + str(res))
Output : The original list is : [(5, 6), (1, 2), (7, 8), (9, 12)]
The result after adding dimension : [(5, 6, 4), (1, 2, 5), (7, 8, 7), (9, 12, 3)]
Time complexity: O(m*n), because it performs the same number of iterations as the original code.
Auxiliary space: O(m*n) as well, because it creates a dictionary with m * n keys and a list of m * n elements
Method #2 : Using zip() + * operator The combination of above functions can be used to solve this problem. In this, we perform the task of joining using unpacking operator to unpack values and then perform the join of custom values.
Python3
# Python3 code to demonstrate working of
# Add custom dimension in Matrix
# Using zip() + * operator
# initializing list
test_list = [(5, 6), (1, 2), (7, 8), (9, 12)]
# printing original list
print("The original list is : " + str(test_list))
# initializing Column values
vals = [4, 5, 7, 3]
# Add custom dimension in Matrix
# Using zip() + * operator
res = [(*i, j) for i, j in zip(test_list, vals)]
# printing result
print("The result after adding dimension : " + str(res))
Output : The original list is : [(5, 6), (1, 2), (7, 8), (9, 12)]
The result after adding dimension : [(5, 6, 4), (1, 2, 5), (7, 8, 7), (9, 12, 3)]
Method #3 : Using for loop, list(),tuple() methods
Approach
- Initiate a for loop
- Convert each tuple of test_list to list and then append each element of val to e according to index
- After append convert list to tuple again and append that tuple to output list
- Display output list
Python3
# Python3 code to demonstrate working of
# Add custom dimension in Matrix
# initializing list
test_list = [(5, 6), (1, 2), (7, 8), (9, 12)]
# printing original list
print("The original list is : " + str(test_list))
# initializing Column values
vals = [4, 5, 7, 3]
# Add custom dimension in Matrix
res=[]
for i in range(0,len(test_list)):
x=list(test_list[i])
x.append(vals[i])
res.append(tuple(x))
# printing result
print("The result after adding dimension : " + str(res))
OutputThe original list is : [(5, 6), (1, 2), (7, 8), (9, 12)]
The result after adding dimension : [(5, 6, 4), (1, 2, 5), (7, 8, 7), (9, 12, 3)]
Time Complexity : O(N)
Auxiliary Space : O(N)
Similar Reads
Python | Custom length Matrix Sometimes, we need to initialize a matrix in Python of variable length from the list containing elements. In this article, we will discuss the variable length method initialization and certain shorthands to do so. Let's discuss certain ways to perform this. Method #1: Using zip() + list comprehensio
6 min read
Add custom borders to matrix in Python Given a Matrix, the task is to write a python program to print each row having custom borders. Input : test_list = [[4, 5, 6], [1, 4, 5], [6, 9, 1], [0, 3 ,1]], bord = "|" Output : | 4 5 6 | | 1 4 5 | | 6 9 1 | | 0 3 1 | Explanation : Matrix is ended using | border as required.Input : test_list = [[
5 min read
Take Matrix input from user in Python Matrix is nothing but a rectangular arrangement of data or numbers. In other words, it is a rectangular array of data or numbers. The horizontal entries in a matrix are called as 'rows' while the vertical entries are called as 'columns'. If a matrix has r number of rows and c number of columns then
5 min read
Initialize Matrix in Python Initializing a matrix in Python refers to creating a 2D structure (list of lists) to store data in rows and columns. For example, a 3x2 matrix can be represented as three rows, each containing two elements. Letâs explore different methods to do this efficientely.Using list comprehensionList comprehe
2 min read
Python - Matrix creation of n*n Matrices are fundamental structures in programming and are widely used in various domains including mathematics, machine learning, image processing, and simulations. Creating an nÃn matrix efficiently is an important step for these applications. This article will explore multiple ways to create such
3 min read
Summation Matrix columns - Python The task of summing the columns of a matrix in Python involves calculating the sum of each column in a 2D list or array. For example, given the matrix a = [[3, 7, 6], [1, 3, 5], [9, 3, 2]], the goal is to compute the sum of each column, resulting in [13, 13, 13]. Using numpy.sum()numpy.sum() is a hi
2 min read