Rev 539 | Blame | Compare with Previous | Last modification | View Log | RSS feed
!goto $wims_read_parm
:def
title=Trace de matrice
synonyme=matrice trace
input=square_matrix
!exit
:proc
result=!exec pari trace([$mat])
!exit
:output
!set pars=$[max(min($rows,10),1)]
<table class="wimscenter wimsnoborder">
!for i=1 to $rows
!set l=!line $i of $formula
<tr>
!if $i=1
<td rowspan="$rows">trace $(m_leftpar$pars)</td>
!endif
!for j=1 to $cols
!set k=!item $j of $l
<td>$k</td>
!next j
!if $i=1
<td rowspan="$rows">$(m_rightpar$pars) = $result</td>
!endif
</tr>
!next i
</table>
!exit