How to remove axis from a sparsity plot with spy function?

3 ビュー (過去 30 日間)
Xiaohan Du
Xiaohan Du 2017 年 10 月 12 日
コメント済み: Xiaohan Du 2017 年 10 月 12 日
Hello,
I plot the sparsity of a matrix with spy, like this:
a = rand(5, 2);
spy(a)
So it comes with x and y axis, and
nz = 10
on the bottom, which is completely normal. Does anyone know how to remove these axis and 'nz = 10'?
Thanks!

採用された回答

KSSV
KSSV 2017 年 10 月 12 日
axis off
  3 件のコメント
KSSV
KSSV 2017 年 10 月 12 日
a = rand(5, 2);
spy(a)
set(gca,'xticklabel',{[]})
set(gca,'yticklabel',{[]})
delete(findall(findall(gcf,'Type','axe'),'Type','text'))
Xiaohan Du
Xiaohan Du 2017 年 10 月 12 日
thanks! this is what I'm looking for!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by