使用cellfun将scatter3应用于单元阵列的每个单元格

问题描述 投票:0回答:1

如何在qazxsw poi的每个qazxsw poi细胞上应用qazxsw poi?

scatter3

我已将矩阵转换为单元格数组。如何在此单元阵列的每个单元格上使用{3x10}

matlab matlab-figure cell-array scatter3d
1个回答
0
投票
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}

© www.soinside.com 2019 - 2024. All rights reserved.