3

上部と下部が満たされた「ソリッド」シリンダーを作成しようとしています。「それを閉じる」ための上下の円はありませんが、それを作成する関数ylinder(r)があることを私は知っています。

私はいくつかの調査を行いましたが、これを行う機能が見つからないようです。私はこれを見つけました: http://www.mathworks.com/help/symbolic/mupad_ref/plot-cylinder.htmlこれはmupadコードですが、その関数をmatlabから呼び出す方法がわかりません(私の.mから)ファイル)。もう一度、私はいくつかの調査を行いましたが、これは私が見つけたものです。 html . これは可能ですか?そうでない場合、matlab で「ソリッド」シリンダーを作成するにはどうすればよいですか?

ありがとう

4

2 に答える 2

4

円柱が - 軸に整列しz、半径が - 平面R上の単位高さに沿って線形に配置されているXYと仮定します (組み込みの と同じ仮定cylinder):

function [x,y,z] = solidCylinder(varargin)

    %// Basic checks
    assert(nargin >= 1, 'Not enough input arguments.');
    assert(nargin <= 3, 'Too many input arguments.');
    assert(nargout <= 3, 'Too many output arguments.');

    %// Parse input
    N  = 20;
    Ax = [];
    switch nargin
        case 1 %// R
            R  = varargin{1};
        case 2  %// Ax, R  or  R, N
            if ishandle(varargin{1})
                Ax = varargin{1};
                R  = varargin{2};                
            else
                R  = varargin{1};
                N  = varargin{2};
            end

        case 3 %// Ax, R, N
            Ax = varargin{1};
            R  = varargin{2};
            N  = varargin{3};
    end

    %// Check input arguments
    if ~isempty(Ax)
        assert(ishandle(Ax) && strcmp(get(Ax, 'type'), 'axes'),...
            'Argument ''Ax'' must be a valid axis handle.');        
    else
        Ax = gca;
    end

    assert(isnumeric(R) && isvector(R) && all(isfinite(R)) && all(imag(R)==0) && all(R>0),...
        'Argument ''R'' must be a vector containing finite, positive, real values.');    
    assert(isnumeric(N) && isscalar(N) && isfinite(N) && imag(N)==0 && N>0 && round(N)==N,...
        'Argument ''N'' must be a finite, postive, real, scalar integer.');

    %// Compute cylinder coords (mostly borrowed from builtin 'cylinder')   
    theta         = 2*pi*(0:N)/N;
    sintheta      = sin(theta); 
    sintheta(N+1) = 0;

    M = length(R);
    if M==1 
        R = [R;R]; M = 2; end

    x = R(:) * cos(theta);
    y = R(:) * sintheta;
    z = (0:M-1).'/(M-1) * ones(1,N+1);  %'

    if nargout == 0                
        oldNextPlot = get(Ax, 'NextPlot');         
        set(Ax, 'NextPlot', 'add');

        %// The side of the cylinder
        surf(x,y,z, 'parent',Ax); 
        %// The bottom 
        patch(x(1,:)  , y(1,:)  , z(1,:)  , z(1,:)  );
        %// The top
        patch(x(end,:), y(end,:), z(end,:), z(end,:));

        set(Ax, 'NextPlot', oldNextPlot);
    end

end

ポイントが高さの円柱の内側にあるかどうかを確認するにはL(注: で作成された真の「円柱」を想定し、少なくとも 2 つの異なる値で[R R]作成された複合オブジェクト (円柱を含む円錐) ではありません):[R1 R2 ... RN]

function p = pointInCylinder(x,y,z)

    %// These can also be passed by argument of course
    R = 10;
    L = 5;

    %// Basic checks
    assert(isequal(size(x),size(y),size(z)), ... 
        'Dimensions of the input arguments must be equal.');

    %// Points inside the circular shell? 
    Rs = sqrt(x.^2 + y.^2 + z.^2) <= R;
    %// Points inside the top and bottom? 
    Os = z>=0 & z<=L;

    p = Rs & Os;

end
于 2013-11-11T07:53:57.110 に答える