Movatterモバイル変換


[0]ホーム

URL:


Open In App
Next Article:
numpy matrix operations | zeros() function
Next article icon
numpy.matlib.empty() is another function for doing matrix operations in numpy.It returns a new matrix of given shape and type, without initializing entries.
Syntax : numpy.matlib.empty(shape, dtype=None, order='C')Parameters :shape : [int or tuple of int] Shape of the desired output empty matrix.dtype : [optional] Desired output data-type.order : Whether to store multi-dimensional data in row-major (C-style) or column-major (Fortran-style) order in memory.Return : A new matrix of given shape and type,
Code #1 :Python3
# Python program explaining# numpy.matlib.empty() function# importing numpy and matrix libraryimportnumpyasgeekimportnumpy.matlib# desired output matrixout_mat=geek.matlib.empty((2,3))print("Output matrix : ",out_mat)
Output :
Output matrix :  [[  6.93621940e-310   2.43141878e-316   6.93621669e-310] [  6.93621669e-310   6.93621553e-310   6.93621553e-310]]
 Code #2 :Python3
# Python program explaining# numpy.matlib.empty() function# importing numpy and matrix libraryimportnumpyasgeekimportnumpy.matlib# desired output matrixout_mat=geek.matlib.empty((2,3),dtype=int,order='C')print("Output matrix : ",out_mat)
Output :
Output matrix :  [[140133380791224 140133380791224 140133356100528] [140133356100336 140133356100592 140133343343704]]

Similar Reads

We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood ourCookie Policy &Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences

[8]ページ先頭

©2009-2025 Movatter.jp