中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

鹰潭市| 杭锦后旗| 宜章县| 湖州市| 永福县| 通城县| 会昌县| 陆良县| 东莞市| 寻乌县| 霍城县| 云浮市| 阿克苏市| 贞丰县| 娄底市| 越西县| 乌拉特前旗| 界首市| 姚安县| 右玉县| 原阳县| 兴山县| 夏河县| 启东市| 雅安市| 富平县| 昭通市| 裕民县| 榆中县| 农安县| 清苑县| 清水县| 都江堰市| 临武县| 岱山县| 榆社县| 贵德县| 灌阳县| 台东市| 修水县| 普安县|