亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jupyter notebook中美觀顯示矩陣的方法

發布時間:2020-08-03 09:47:34 來源:億速云 閱讀:1077 作者:小豬 欄目:開發技術

這篇文章主要講解了jupyter notebook中美觀顯示矩陣的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

我就廢話不多說了,還是直接看代碼吧!

from IPython.display import display,Latex,Math
%matplotlib inline
 
from IPython.core.interactiveshell import InteractiveShell
sh = InteractiveShell.instance()
 
def number_to_str(n,cut=5):
  ns=str(n)
  format_='{0:.'+str(cut)+'f}'
  if 'e' in ns or ('.' in ns and len(ns)>cut+1):
    return format_.format(n)
  else:
    return str(n)
 
def matrix_to_latex(mat,style='bmatrix'):
  if type(mat)==np.matrixlib.defmatrix.matrix:
    mat=mat.A
  head=r'\begin{'+style+'}'
  tail=r'\end{'+style+'}'
  if len(mat.shape)==1:
    body=r'\\'.join([str(el) for el in mat])
    return head+body+tail
  elif len(mat.shape)==2:
    lines=[]
    for row in mat:
      lines.append('&'.join([number_to_str(el) for el in row])+r'\\')
    s=head+' '.join(lines)+tail
    return s
  return None
 
sh.display_formatter.formatters['text/latex'].type_printers[np.ndarray]=matrix_to_latex

輸入后運行即可

我們在進行矩陣打印的時候就相當美觀咯!!!

jupyter notebook中美觀顯示矩陣的方法

補充知識:解決python numpy 大數組顯示不全的問題

import numpy as np
np.set_printoptions(threshold=np.inf)

或者

np.set_printoptions(threshold='nan')

其中threshold表示:

Total number of array elements to be print(輸出數組的元素數目)

看完上述內容,是不是對jupyter notebook中美觀顯示矩陣的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彰武县| 木里| 辛集市| 德庆县| 义马市| 霍邱县| 北宁市| 自治县| 大方县| 余江县| 宁远县| 怀仁县| 青川县| 札达县| 鄂伦春自治旗| 炉霍县| 阿克苏市| 如皋市| 化德县| 获嘉县| 定南县| 铜山县| 庆元县| 高邮市| 环江| 贡觉县| 留坝县| 利川市| 邳州市| 沙河市| 新丰县| 辽阳县| 汶川县| 营口市| 邵阳县| 孟村| 莆田市| 金阳县| 新和县| 黄骅市| 黑山县|