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

📄 plot.m

📁 实现了传感器定位时
💻 M
字号:
function plot(obj)
% PLOT Plot the sensor array sample data set
% Example:
%  plot(ds);

clf
surf(real(obj.Data)',...
    'EdgeLighting','flat','FaceLighting','none',...
    'FaceColor',[1 1 1],...
    'EdgeColor',[0 0 1]);
view([-55.5 74]);
xlabel('Samples')
ylabel('Sensors')
zlabel('Amplitude')
xlim([1 obj.NumSamples]);
ylim([1 obj.NumSensors]);
set(gca,'xtick',(1:obj.NumSamples/8:obj.NumSamples));
title(obj.Name);
end

⌨️ 快捷键说明

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