ctranspose.m

来自「Sparse Estimation Algorithms by Blumensa」· M 代码 · 共 16 行

M
16
字号
function  out = ctranspose(P)% Function to toggle the transpose property of object P of class% MyObjectName%% Copyright (c) 2007 Thomas Blumensath%% The University of Edinburgh% Email: thomas.blumensath@ed.ac.uk% Comments and bug reports welcome%% This file is part of sparsity Version 0.1% Created: April 2007%% Please read COPYRIGHT.m for terms and conditions.    P.adjoint = xor(P.adjoint,1);    out = P;

⌨️ 快捷键说明

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