This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from __future__ import division | |
from math import sqrt, exp, pi | |
def friedman(f, node_x, node_s, delta_f, ksi, sigma, max_iterations, kernel): | |
""" | |
Решение уравнения Фредгольма I рода методом итеративной регуляризации | |
Фридмана с выбором числа итераций способом обобщенной невязки | |
с использованием значений погрешностей правой части и оператора |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
import bottle | |
import os | |
import signal | |
import subprocess | |
import time | |
process = None | |
args = ['./start.sh'] |