How to apply scatter3
on each {3x10}
cell of ycell
?
numOfSensors = 10;
numOfSets = 7;
%% sample data preparation
x = 1:3;
y = rand(length(x), numOfSets*numOfSensors);
yCell = mat2cell(y, 3, numOfSensors*ones(1,numOfSets)); % this is my sensor data
ycell = {3x10} {3x10} {3x10} {3x10} {3x10} {3x10} {3x10}
I have converted the matrix to a cell array. How do I use scatter3
on each cell of this cell array?