photo

Athanasios Paraskevopoulos


Hellenic Open University

Last seen: etwa ein Jahr vor Aktiv seit 2023

Followers: 9   Following: 6

Nachricht

Athanasios is a Teacher of Mathematics with a proven track record of working in education management. Proficient in Ease of Adaptation, Course Design, and Instructional Technology. Strong education professional with a Bachelor's degree with an emphasis in Mathematics from the University of Aegean. Currently, he is pursuing a Master's degree in Applied Mathematics at the Hellenic Open University, with a specific focus on Ordinary and Partial Differential equations. His enthusiasm lies in the application of mathematical models to real-world contexts, such as epidemiology and population growth.

Programming Languages:
MATLAB
Spoken Languages:
English
Pronouns:
He/him
Professional Interests:
Mathematics, Numerical Integration and Differential Equations, Partial Differential Equation Toolbox, Stochastic Differential Equation (SDE) Models, Applied Mathematics

Statistik

All
MATLAB Answers

21 Fragen
27 Antworten

File Exchange

6 Dateien

Cody

0 Probleme
6 Lösungen

RANG
2.661
of 300.392

REPUTATION
22

BEITRÄGE
21 Fragen
27 Antworten

ANTWORTZUSTIMMUNG
90.48%

ERHALTENE STIMMEN
2

RANG
16.754 of 20.934

REPUTATION
6

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
6 Dateien

DOWNLOADS
8

ALL TIME DOWNLOADS
57

RANG
45.869
of 168.373

BEITRÄGE
0 Probleme
6 Lösungen

PUNKTESTAND
83

ANZAHL DER ABZEICHEN
2

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • 3 Month Streak
  • Knowledgeable Level 2
  • Promoter
  • First Answer
  • Thankful Level 3
  • Solver
  • First Submission

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Nondimensionalizing Length and Temp data from 2-D Ansys Transient thermal in Matlab
The characteristic length scale is 100 µm (or 100 × 10⁻⁶ m). The nondimensional length can be calculated as: where is th...

etwa ein Jahr vor | 0

Gelöst


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

etwa ein Jahr vor

Beantwortet
Odd and even numbers
You can solve this problem using a loop and an if-else statement to check whether a number is odd or even. % Define the range o...

etwa ein Jahr vor | 0

Frage


Solving Duffing Equation with the new framework for ODEs
I solved the duffing equation using the new framework for ODEs. Below is the code. It works fine and plots as expected. Howeve...

etwa ein Jahr vor | 1 Antwort | 1

1

Antwort

Frage


Duffing equation:Transition to Chaos
The Original Equation is the following: Let . This implies that Then we rewrite it as a System of First-Order Equations Us...

etwa ein Jahr vor | 1 Antwort | 0

1

Antwort

Frage


Lorenz Attractor Animation with Frame-by-Frame Plotting
I was trying to create an animation of Lorenz Attractor. I used the following code but it did not give me the result I want l...

etwa ein Jahr vor | 1 Antwort | 0

1

Antwort

Frage


Representation of Gabriel's Horn
By reading the following very interesting paper An Understanding of a Solid with Finite Volume and Infinite Surface Area. ...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Beantwortet
nonlinear dynamics(Measure synchronization)
Let's first correct and complete the provided code. We need to make sure that the equations, integration, and plot functions are...

mehr als ein Jahr vor | 0

Beantwortet
How to take input values from users symbolically while running a code?
I think this is what you asked for % Function to generate rotation matrix rot_matrix = @(axis, theta) cos(theta) * eye(3) + .....

mehr als ein Jahr vor | 0

Beantwortet
Plotting the Evolution of Spatially Localized Initial Conditions for Discrete Klein-Gordon Equation
% Parameters L = 200; % Length of the system K = 99; % Number of spatial points omega_d = 1; % Characteristic frequency b...

mehr als ein Jahr vor | 0

| akzeptiert

Frage


Plotting the Evolution of Spatially Localized Initial Conditions for Discrete Klein-Gordon Equation
Ιn continuation of the study with which I have been fascinated Numerical Simulation of a Damped, Driven Nonlinear Wave System wi...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Beantwortet
Plot legend goes behing plot axes when using tiledlayout
The issue you are experiencing with legends disappearing behind the axes when moved in a tiledlayout can be addressed by setting...

mehr als ein Jahr vor | 0

Beantwortet
Crank-Nicholson method
The main issue with your code is in the line where you solve the linear system A⋅unew​=b. The correct approach is to solve for 𝑢...

mehr als ein Jahr vor | 0

Beantwortet
Numerical Simulation of a Damped, Driven Nonlinear Wave System with Spatially Extended Initial Conditions
I found it i should remove the discretization parameter because in the following. I understood that @William Rose Thank yo...

mehr als ein Jahr vor | 0

| akzeptiert

Frage


Plotting Phase Portrait of Duffing Equation
I study a paper that describes a stationary problem where the function satisfies the boundary conditions and is governed by a m...

mehr als ein Jahr vor | 1 Antwort | 1

1

Antwort

Frage


Numerical Simulation of a Damped, Driven Nonlinear Wave System with Spatially Extended Initial Conditions
The study of the dynamics of the discrete Klein - Gordon equation (DKG) with friction is given by the equation : In the abov...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Beantwortet
Ayers 'Differential Equations Problem 4
syms x y(x) C % Define the differential equation dy_dx = diff(y, x); ode = 4*x*dy_dx^2 + 2*x*dy_dx - y == 0; % Solve the...

mehr als ein Jahr vor | 0

Beantwortet
plot of riemann surface
To plot a complete Riemann surface for the function, you need to consider the nature of the complex square root function and how...

mehr als ein Jahr vor | 0

| akzeptiert

Beantwortet
Custom colorbar labeling centered on colors
I tried the folowing code! It is similar with your second graph, but I could replicate the arrows correct. You can edit the cod...

mehr als ein Jahr vor | 0

Beantwortet
fitcdiscr bug: Why does "ClassNames" now have to be provided in alphanumerical order otherwise accuracy is terrible?
Code with Issue: load fisheriris Mdl = fitcdiscr(meas, species, "ClassNames", flip(unique(species, "stable")), "KFold", 10); ...

mehr als ein Jahr vor | 0

Beantwortet
plotting the bifurcation diagram of Duffing oscillations in the (x1, omega) plane?
function dx = duffing(t, x) global alpha delta beta F omega dx = [x(2); -delta * x(2) - alpha * x(1) - beta...

mehr als ein Jahr vor | 0

Beantwortet
How to solve SIR model with using DTM (Differential Transform Method)
function sir_model_dtm() % Parameters alpha = 0.3; % Infection rate beta = 0.1; % Recovery rate N = 1...

mehr als ein Jahr vor | 0

Beantwortet
Display in the command window
startUpHeight = 299.07; startUpValue = 100; radius = 15; minConstraintX = 50; % Swapped values maxConstraintX = 150; % Sw...

mehr als ein Jahr vor | 0

| akzeptiert

Frage


Population Growth Model Analysis
Below I tried to solve Population Growth problem, I provide you the mathematical solution. Also, I create MATLAB code, however i...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Beantwortet
frequency equation for multiple degree freedom system
% Define the mass matrix M M = diag([1.8, 6.3, 5.4, 22.5, 54.0]); % Define the damping matrix C C = [10000, -10000, 0, 0, 0...

mehr als ein Jahr vor | 0

Beantwortet
Solving logistic ode for bacterial population growth
% Parameters r = 0.002; % per second K = 50000; % carrying capacity (assuming a value, as it is not provided) N0 = 1000; %...

mehr als ein Jahr vor | 0

Frage


Selecting appropriate values for the parameters in the Gierer-Meinhardt activator-inhibitor model
For the following activator-inhibitor system (Alfred Gierer-Hans Meinhardt model), with all constants positive and initial ...

mehr als ein Jahr vor | 2 Antworten | 0

2

Antworten

Frage


Plotting Damped Nonlinear Oscillator
The given system is a damped nonlinear oscillator with a nonlinear resistance, described by the differential equation: where ...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Frage


Discrete Population Growth Model Plot
Use the detailed, discrete model for population growth that follows a variation of the logistic law: with . Calculate the p...

mehr als ein Jahr vor | 0 Antworten | 0

0

Antworten

Frage


Plotting discrete Klein - Gordon equation (DKG) with friction in DNA
I am exploring the dynamics of the discrete Klein - Gordon equation (DKG) with friction is given by the equation : In the ab...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Mehr laden