ctranspose.m

来自「Interval Arithmetic Toolbox for Matlab」· M 代码 · 共 32 行

M
32
字号
function ctrans = ctranspose(a)

%CTRANSPOSE (interval) computes the complex transpose of an interval matrix.
%
%b4m - datatype interval    Version 1.02    (c) 26.2.1998 Jens Zemke
%
%   DESCRIPTION:
%     'ctranspose' is called
%
%         ctrans = a'
%
%     or
%
%         ctrans = ctranspose(a)
%
%     with an interval matrix a and computes
%     the (complex) transpose of a.
%
%     Because there are up to now no complex
%     intervals ctranspose equals transpose.
%
%     The operations on the datatype interval
%     are based on BIAS by Olaf Knueppel.
%
%   SEE ALSO:
%     interval: transpose.
%     double: ctranspose.

% last revision 22.10.1998 by Jens Zemke

ctrans = interval(inf(a)', sup(a)');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?