如何使用Numpy.identity()

  Numpy.identity()的document. 輸入n爲行數或列數,返回一個n*n的對角陣,對角線元素爲1,其餘爲0。dtype可選,默認爲float格式。若dtype設爲「bool」,則返回對角線元素爲True其餘元素爲Flase的方陣。 a = numpy.identity(3,dtype=bool) print(a) [[ True False False] [False True
相關文章
相關標籤/搜索