Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.0 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Elementary Functions > matrixmanipulation > pertrans

pertrans

第2対角項を基準として転置

呼び出し手順

[Y] = pertrans(X)

引数

X, Y

任意の型の正方または矩形の行列

説明

Y=pertrans(X) は, Xの 並び替えおよび転置を同時に実施したもの, すなわち, Xの第2対角項に関して対称な行列を返します (ユーティリティ関数).

// 正方行列:
A = matrix(1:25, 5, 5);
pertrans(A)

// 矩形行列:
A = grand(5, 3, "uin", 0, 9);
pertrans(A)

参照

  • transposition — (') 転置演算子, 文字列デリミタ
  • flipdim — 指定した次元に沿って x ブロック要素を反転
  • permute — permutes the dimensions of an array
Report an issue
<< permute matrixmanipulation resize_matrix >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 25 08:53:19 CET 2020