www.gusucode.com > mbc 工具箱 matlab 源码程序 > mbc/@xregpointer/reshape.m

    function p= reshape(p,varargin)
%RESHAPE Overloaded reshape for pointer array
%   PTR = RESHAPE( PTR, M, N )
%   PTR = RESHAPE( PTR, [M, N] )
%
%   See also RESHAPE

%  Copyright 2000-2005 The MathWorks, Inc. and Ford Global Technologies, Inc.

p.ptr= reshape(p.ptr,varargin{:});