Severity: Warning
Message: fopen(/home/polpe/.phpsession/ci_sessionbc9f9be18f73f96c3bb5f76c716ba8b25a447f47): failed to open stream: No space left on device
Filename: drivers/Session_files_driver.php
Line Number: 159
Backtrace:
File: /home/polpe/public_html/application/controllers/Main.php
Line: 17
Function: library
File: /home/polpe/public_html/index.php
Line: 315
Function: require_once
TELJES MATLAB SCRIPT KIEGÉSZÍTŐ FÜGGVÉNYEKKEL
file: d2017_09_20_Lorentz_system.m author: Peter Polcz <ppolcz@gmail.com>
Created on 2017. September 20.
┌d2017_09_20_Lorentz_system │ - Persistence for `d2017_09_20_Lorentz_system` initialized [run ID: 1754, 2017.09.20. Wednesday, 21:36:37] │ - Script `d2017_09_20_Lorentz_system` backuped
sigma = 10;
beta = 8/3;
rho = 28;
f = @(t,x) [
-sigma*x(1) + sigma*x(2)
rho*x(1) - x(2) - x(1)*x(3)
-beta*x(3) + x(1)*x(2)
];
[t,x] = ode45(f,[0 50],[1 1 1]);
figure, plot3(x(:,1),x(:,2),x(:,3))
figure,
subplot(311), plot(t, x(:,1));
subplot(312), plot(t, x(:,2));
subplot(313), plot(t, x(:,3));
End of the script.
└ 0.79986 [sec]