Gauss-Seidel
{% if not size %}
Tamaño de la matriz (n x n):
Continuar
{% else %}
{% for i in range(size) %}
{% for j in range(size) %}
{% endfor %}
=
{% endfor %}
Resolver
{% endif %} {% if solution %}
Solución:
{% for val in solution %}
x{{ loop.index0 }} = {{ val }}
{% endfor %}
Descargar solución (.txt)
{% elif error %}
Error: {{ error }}
{% endif %}