Mercurial > hg > ltpda
view m-toolbox/classes/@data3D/getZ.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% GETZ Get the property 'z'. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: Get the property 'z'. % % CALL: val = obj.getZ(); % val = obj.getZ(idx); % val = obj.getZ(idx1, idx2); % val = obj.getZ(1:10); % val = obj.getZ(1,:); % % INPUTS: obj - must be a single data3D object. % idx - index of the data samples % % VERSION: $Id: getZ.m,v 1.9 2011/03/21 15:47:29 mauro Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = getZ(data,idx1,idx2) % get z values out = data.z; % Decide if the user wants all data switch nargin case 2 out = out(idx1); case 3 out = out(idx1, idx2); end varargout{1} = out; end