% change pwd to ODS location % clear the current figure window clf; % read from worksheet dataSet = odsread ('./CubeGraphing.ods', 'Data', 'C2:E5'); % extract individual columns by range column number x = dataSet(:,1) y = dataSet(:,2) z = dataSet(:,3) % plot data read from spreadsheet scatter3(x, y, z, 15,"black","filled"); % define axis ranges xlim([-10 10]) ylim([-10 10]) zlim([-10 10]) % define axis labels xlabel ("X = Awareness","fontweight", "bold"); ylabel ("Y = Capability","fontweight", "bold"); zlabel ("Z = Willingness","fontweight", "bold"); % define arbitrary text text (0, 0, 0, "Arbitrary Text here");