This commit is contained in:
2025-12-10 18:33:31 +03:00
commit 4d95efa95e
17 changed files with 20559 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
lambda = 2000;
f = @(t,y) -lambda*y + t;
y0 = 0;
tspan = [0 1];
opts = odeset('RelTol',1e-12,'AbsTol',1e-14);
[t2,y2] = ode15s(f,tspan,y0,opts);
plot(t2,y2)
print -dpng "plot.png"

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB