📄 shiftquditsleft.m
字号:
% shiftquditsleft Shift the qudits to the left% shiftquditsleft(rho,n) shift the qubits of the state rho% by n qubits to the left. If n is not given, then it is% taken to be one. A state vector can also be given instead of% the density matrix rho. If the system is not a qubit% register, but a register of higher dimensional qudits% then we can use the form shiftquditsleft(rho,n,d)% where d gives the dimension.% Copyright (C) 2005 Geza Toth E.mail: toth@alumni.nd.edu%% This program is free software; you can redistribute it and/or% modify it under the terms of the GNU General Public License% as published by the Free Software Foundation; see gpl.txt% of this subroutine package.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the% GNU General Public License for more details.% % You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 51 Franklin Street, Fifth Floor, % Boston, MA 02110-1301, USA.function mm=shiftquditsleft(m,varargin)if isempty(varargin) n=1; d=2;elseif length(varargin)==1 n=varargin{1}; d=2;elseif length(varargin)==2 n=varargin{1}; d=varargin{2};else error('Wrong number of input arguments.');end %ifN=log2(max(size(m)))/log2(d);if 0>n, mm=reorder(m,[(N+n-1):-1:(-n),N:-1:N+n],d);elseif n>0, mm=reorder(m,[N-n:-1:1 N:-1:N-n+1],d);end %if
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -