Data for "Quantum transport in an ambipolar InSb nanowire quantum dot device"
Description
The data file is for supporting the article "Quantum transport in an ambipolar InSb nanowire quantum dot device" on Physical Review B.
Files
Steps to reproduce
The file are organized as .fig format, which is the figure of matlab. The data can also be extracted by running the following matlab function, the data will be restored in X,Y,Z. Data extracting function: function [X,Y,Z] = fig2data() %h = gcf; %current figure handle %axesObjs = get(h, 'Children'); %axes handles ch = get(gca, 'ch'); %axes handles %dataObjs = get(axesObjs, 'Children'); %handles to low-level graphics objects in axes %objTypes = get(dataObjs, 'Type'); %type of low-level graphics object X = get(ch, 'xd'); %data from low-level grahics objects Y = get(ch, 'yd'); Z = get(ch, 'CData'); end