コード例 #1
0
        private void PlotRefresh()
        {
            _plot1.DiscreteFunction = new DiscreteFunction2D(FourierSobolevHaar.Calc(pWithZero), 0, 1, lengthX);
            _plot2.DiscreteFunction = new DiscreteFunction2D(SobolevHaarLinearCombination.FastCalc(p), 0, 1, lengthX);

            _plot1.Refresh();
            _plot2.Refresh();
        }
コード例 #2
0
        public FourierSobolevHaarExample()
        {
            InitializeComponent();

            lengthP = (int)NumP.Value;
            lengthX = (int)NumX.Value;

            FindP();

            _plot1.DiscreteFunction = new DiscreteFunction2D(FourierSobolevHaar.Calc(pWithZero), 0, 1, lengthX);
            _plot2.DiscreteFunction = new DiscreteFunction2D(SobolevHaarLinearCombination.FastCalc(p), 0, 1, lengthX);

            GraphBuilder.DrawPlot(_plot1);
            GraphBuilder.DrawPlot(_plot2);

            Refresh();
        }