×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

Minimum value from a Matrix | Linear Algebra using Python

Linear Algebra using Python | Minimum value from a Matrix: Here, we are going to learn about the minimum value from a matrix and its implementation in Python.
Submitted by Anuj Singh, on June 06, 2020

Prerequisites:

Here, we are implementing a Python program to find the minimum value from a matrix or vector using an inbuilt function in the numpy library.

Syntax:

    numpy.min(Matrix_M)

Return: The minimum value from the Matrix Matrix_M

Python code to find the minimum value from a Matrix

# Linear Algebra Learning Sequence
# Minimum of a Matrix or Vector

import numpy as np

M = np.array([[2,3,4], [4,4,8], [4,8455,7], [4,8,99] ])
print("\n\n---Matrix A---\n", M)
print('minimum value in Matrix A : ', np.min(M))

M = np.array([[2,3,4], [4,44,8], [4,8,7], [4,8,9] ])
print("\n\n---Matrix B---\n", M)
print('minimum value in Matrix B : ', np.min(M))


M = np.array([[2,3,4], [4,4,8], [4,0,7] ])
print("\n\n---Matrix C---\n", M)
print('minimum value in Matrix C : ', np.min(M))

Output:

---Matrix A---
 [[   2    3    4]
 [   4    4    8]
 [   4 8455    7]
 [   4    8   99]]
minimum value in Matrix A :  2


---Matrix B---
 [[ 2  3  4]
 [ 4 44  8]
 [ 4  8  7]
 [ 4  8  9]]
minimum value in Matrix B :  2


---Matrix C---
 [[2 3 4]
 [4 4 8]
 [4 0 7]]
minimum value in Matrix C :  0
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.