From 9bf8feda307633faac7417065e70882c06c20ea9 Mon Sep 17 00:00:00 2001 From: Samuel Gougeon Date: Tue, 27 Aug 2013 16:44:27 +0200 Subject: [PATCH] * Bug #12814 fixed - Elementary_functions doc: improvement for pertrans() pertrans(M) works only on M indices, so any type of M is accepted. Change-Id: I4199637c84375feccc12f17d9d1234f98c2dccf1 --- scilab/CHANGES_5.5.X | 2 + .../help/en_US/matrixmanipulation/pertrans.xml | 38 ++++++----- .../help/fr_FR/matrixmanipulation/pertrans.xml | 68 ++++++++++++++++++++ 3 files changed, 92 insertions(+), 16 deletions(-) create mode 100644 scilab/modules/elementary_functions/help/fr_FR/matrixmanipulation/pertrans.xml diff --git a/scilab/CHANGES_5.5.X b/scilab/CHANGES_5.5.X index 6d45dfc..ce03cef 100644 --- a/scilab/CHANGES_5.5.X +++ b/scilab/CHANGES_5.5.X @@ -557,6 +557,8 @@ Bug fixes * Bug #12813 fixed - flipdim() function extended to any type of input data. +* Bug #12814 fixed - Elementary_functions: improvement of pertrans() doc. + * Bug #12816 fixed - Numbers pasted in editvar were not parsed according to locale. * Bug #12823 fixed - In help generation (toolbox) links were not correctly handled. diff --git a/scilab/modules/elementary_functions/help/en_US/matrixmanipulation/pertrans.xml b/scilab/modules/elementary_functions/help/en_US/matrixmanipulation/pertrans.xml index daf2e70..4c20b3e 100644 --- a/scilab/modules/elementary_functions/help/en_US/matrixmanipulation/pertrans.xml +++ b/scilab/modules/elementary_functions/help/en_US/matrixmanipulation/pertrans.xml @@ -1,37 +1,32 @@ pertrans - simultaneous permutation and transposition + Transposition with reference to the 2nd diagonal Calling Sequence - [Y]=pertrans(X) + [Y] = pertrans(X) Arguments - X - - real or complex matrix - - - - Y + X, Y - real or complex matrix + square or rectangular matrices of any data type @@ -39,15 +34,20 @@ Description - Y=pertrans(X) returns the simultaneous permutation and transposition of - X, i.e. the symmetric of X + Y = pertrans(X) returns the simultaneous permutation and transposition of + X, i.e. the symmetric of X with reference to the second diagonal (utility function). Examples - @@ -55,6 +55,12 @@ pertrans(A) See Also + transposition + + + flipdim + + permute diff --git a/scilab/modules/elementary_functions/help/fr_FR/matrixmanipulation/pertrans.xml b/scilab/modules/elementary_functions/help/fr_FR/matrixmanipulation/pertrans.xml new file mode 100644 index 0000000..6f588b88 --- /dev/null +++ b/scilab/modules/elementary_functions/help/fr_FR/matrixmanipulation/pertrans.xml @@ -0,0 +1,68 @@ + + + + + pertrans + Transposition selon la seconde diagonale + + + Séquence d'appel + [Y] = pertrans(X) + + + Paramètres + + + X, Y + + matrices carrées ou rectangulaires de n'importe quel type + + + + + + Description + + Y = pertrans(X) retourne les permutation et transposition simulanées de + X, i.e. le symétrique de X + selon la seconde diagonale (fonction utilitaire). + + + + Exemples + + + + Voir aussi + + + transposition + + + flipdim + + + permute + + + + -- 1.7.9.5