您的位置:首页 > 编程语言 > MATLAB

MATLAB 画Line_Plot3D

2017-02-07 11:04 926 查看
% Load the spectra data

load spectraData masscharge time spectra

% Create the 3D plot

figure

plot3(masscharge, time, spectra)

box on

% Set the viewing angle and the axis limits

view(25, 42)

axis([500 900 0 22 0 4e8])

% Add title and axis labels

xlabel(‘Mass/Charge (M/Z)’)

ylabel(‘Time’)

zlabel(‘Ion Spectra’)

title(‘Extracted Spectra Subset’)

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  matlab