Diferencia entre revisiones de «Matriz2math.sed»
De FJWiki
m |
|||
(No se muestran 3 ediciones intermedias del mismo usuario) | |||
Línea 21: | Línea 21: | ||
{3,4}} | {3,4}} | ||
+ | Que será luego la matriz: | ||
+ | <math> | ||
+ | \left( \begin{matrix} 1&2 \\ 3&4 \end{matrix} \right) | ||
+ | </math> | ||
== Ver también == | == Ver también == | ||
− | [[math2matriz.sed]] | + | * [[math2matriz.sed]] |
− | [[Enlaces:sed]] | + | * [[matriz2fortran.sed]] |
+ | * [[Enlaces:sed]] | ||
[[Category:Sed_Scripts]] | [[Category:Sed_Scripts]] |
Revisión actual del 22:41 3 jun 2009
Script para pasar un archivo de texto que contiene una matriz en formato separada por tabulaciones a matriz para Mathematica.
matriz2math.sed
#Convierte una matriz por tabs en formato para mathematica 1 i \{ s/\t/,/g $! s/^.*$/\{&\},/g $ s/^.*$/\{&\}}/g
Ejemplos
Usando math2matriz.sed:
$ echo "{{1,2},{3,4}}" | sed -f math2matriz.sed | sed -f matriz2math.sed { {1,2}, {3,4}}
Que será luego la matriz: