Plotting swept data in 3D plot without link between sweeps

3 views (last 30 days)
Hi everyone!
I want to plot my data in 3D without a link between sweeps. This is my current code.
M0dBmto15dBm_0offset_1msdelaya=table2array(M0dBmto15dBm_0offset_1msdelay);
X = reshape(M0dBmto15dBm_0offset_1msdelaya(1:end,1),3,[]);
Y = reshape(M0dBmto15dBm_0offset_1msdelaya(1:end,2),3,[]);
Z = reshape(M0dBmto15dBm_0offset_1msdelaya(1:end,4),3,[]);
surf(X,Y,Z,'FaceColor','interp')
Does anyone have any ideas on how to do this short of just creating loads of new arrays?

Answers (0)

Categories

Find more on Graphics Objects in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!