91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

东港市| 丰都县| 苍溪县| 孟津县| 台北县| 乌苏市| 屯留县| 保亭| 五家渠市| 南雄市| 金湖县| 隆化县| 宜川县| 富阳市| 万宁市| 东丰县| 大丰市| 钦州市| 策勒县| 青冈县| 安庆市| 永顺县| 罗甸县| 宜兰县| 永德县| 水城县| 正宁县| 神木县| 沽源县| 新蔡县| 沈阳市| 平泉县| 彭州市| 平和县| 肃宁县| 天峨县| 古田县| 白银市| 吴堡县| 峡江县| 邵东县|