⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_display_pointsets.m

📁 toolbox_dimreduc - a toolbox for dimension reduction methods This toolbox is an educational and rec
💻 M
字号:
% load and display all point sets

% '3d_cluster'
names = {'swissroll','square','scurve','puncted_sphere','twin_peaks','toroidal_helix','gaussian', '3d_cluster'};
options.sampling = 'rand';

a = 3;
b = 3;
n = 400;

clf;
for i=1:min(a*b,length(names))
    subplot(a,b,i);
    [X,col] = load_points_set( names{i}, n, options );
    plot_scattered(X,col);
    axis off;
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -