# Printing 10x10 matrix on Jupyter Notebook

**URL:** https://discourse.julialang.org/t/printing-10x10-matrix-on-jupyter-notebook/33258
**Category:** General Usage
**Created:** [January 12, 2020, 4:10am UTC](https://discourse.julialang.org/t/printing-10x10-matrix-on-jupyter-notebook/33258 "2020-01-12T04:10:46Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Dervis](https://avatars.discourse-cdn.com/v4/letter/d/76d3ee/32.png) [@Dervis](https://discourse.julialang.org/u/Dervis)
#### Post date: [January 12, 2020, 4:10am UTC](https://discourse.julialang.org/t/printing-10x10-matrix-on-jupyter-notebook/33258/1 "2020-01-12T04:10:46Z")

</div>

Hello,

Anoyone knows how to plot 10x10 large matrix on jupyter notebook without missing any values in it?

My solution matrix, “sol”, is 10x10x2 matrix. I would like to print it as two 10x10 matrices. When I do “println(sol)” , I am missing some values of it (colums 4 to 7).

 ![image](https://global.discourse-cdn.com/julialang/original/3X/1/e/1e37d3b235b9f5b069b85e31ec6310ed4b3a509f.png)

Any solution?  
Thanks

---

<div class="post-metadata">

### Author: ![tkf](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tkf/32/17635_2.png) [@tkf](https://discourse.julialang.org/u/tkf)
#### Post date: [January 12, 2020, 4:23am UTC](https://discourse.julialang.org/t/printing-10x10-matrix-on-jupyter-notebook/33258/2 "2020-01-12T04:23:16Z")

</div>

You can use [`sol |> DisplayAs.Unlimited`](https://tkf.github.io/DisplayAs.jl/dev/#DisplayAs.Unlimited).

---

<div class="post-metadata">

### Author: ![Dervis](https://avatars.discourse-cdn.com/v4/letter/d/76d3ee/32.png) [@Dervis](https://discourse.julialang.org/u/Dervis)
#### Post date: [January 12, 2020, 4:53am UTC](https://discourse.julialang.org/t/printing-10x10-matrix-on-jupyter-notebook/33258/3 "2020-01-12T04:53:37Z")

</div>

Worked, thank you
