description | name | display_as | order | permalink | thumnail_github | layout | language | page_type |
---|---|---|---|---|---|---|---|---|
How to make Sparse Adjacency Matrixes in MATLAB<sup>®</sup> with Plotly. | Sparse Adjacency Matrix | scientific | 22 | matlab/sparse-adjacency-matrix/ | sparse-adjacency-matrix.png | base | matlab | u-guide |
Plot the 60-by-60 sparse adjacency matrix of the connectivity graph of the Buckminster Fuller geodesic dome. This matrix also represents the carbon-60 molecule and a soccer ball.
B = bucky; spy(B) fig2plotly(gcf);
B = bucky; spy(B,'green') fig2plotly(gcf);
B = bucky; spy(B,'red',2) fig2plotly(gcf);