
George Papazafeiropoulos
Major, Infrastructure Engineer, Hellenic Air Force Civil Engineer, M.Sc., Ph.D.
Statistics
RANK
542
of 262.957
REPUTATION
116
CONTRIBUTIONS
0 Questions
63 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
23
RANK
410 of 17.997
REPUTATION
3.711
AVERAGE RATING
4.40
CONTRIBUTIONS
21 Files
DOWNLOADS
185
ALL TIME DOWNLOADS
33567
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Submitted
OpenSeismoMatlab
Open source software for strong ground motion data processing
3 Monate ago | 22 downloads |

Submitted
NonLinDRHAMatlab
Matlab code for non-linear dynamic response history analysis of one-dimensional multi-degree of freedom systems
8 Monate ago | 10 downloads |
Submitted
LinDRHAMatlab
Linear dynamic response history analysis for estimation of structural response to dynamic loads (earthquakes, vibrations, shocks...
8 Monate ago | 4 downloads |
Submitted
DRSAMatlab
Dynamic response spectrum analysis for estimation of structural response to dynamic loads (earthquakes, vibrations, shocks, etc....
8 Monate ago | 4 downloads |
Submitted
Neural Network Optimization
Nonlinear least square minimization using a virtual Artificial Neural Network coupled with a genetic algorithm
9 Monate ago | 24 downloads |
Submitted
PEER Ground Motion Editor
Read and resample earthquake record time histories from the Pacific Earthquake Engineering Research Center (PEER) Ground Motion ...
mehr als 2 Jahre ago | 9 downloads |
Submitted
Matlab_Abaqus_10_Bar_Truss
Program for the solution of the 10-bar truss problem using linking between Abaqus and Matlab
mehr als 2 Jahre ago | 1 download |

Submitted
Matlab_Abaqus_25_Bar_Truss
Program for the solution of the 25-bar truss problem using linking between Abaqus and Matlab
mehr als 2 Jahre ago | 5 downloads |

Submitted
ArtifSeismoMatlab
Generation of artificial acceleration time histories consistent with given response spectrum
mehr als 2 Jahre ago | 2 downloads |

Submitted
Eigenquake simulation
Earthquake ground motion simulation using eigenquakes
mehr als 2 Jahre ago | 1 download |
How to apply neural networks for multiple experimental data
Dear Bharat, I have checked your code segment and I have assigned arbitrary values to the variables that are undefined in it. I...
etwa 3 Jahre ago | 0
Submitted
Bezier Curve and Surface
Plot a Bezier curve or Bezier surface with given control points
fast 4 Jahre ago | 5 downloads |
Submitted
OpenSeismo
OpenSeismo: a new open source software for strong ground motion data processing
mehr als 4 Jahre ago | 5 downloads |

Submitted
Abaqus2Matlab
Program for the extraction of Abaqus analysis results to Matlab
etwa 5 Jahre ago | 45 downloads |

Run Abaqus cmd from MATLAB command line
You can execute the following Matlab code in Windows: try system(['abaqus cae noGUI=model.py interactive']) %...
etwa 5 Jahre ago | 0
how to call abaqus using matlab for iterative process?
You should access the abaqus results (*.fil) file via MATLAB. In order to take your results into a fil file you should specify...
etwa 5 Jahre ago | 0
Negative eigenvalues with frequency analysis related to ABAQUS
Dear Xiaohan, You can perform the eigenfrequency analysis in Abaqus as usual and then extract the analysis results using Abaq...
mehr als 5 Jahre ago | 0
Submitted
Arc-length method
Finds the roots of a function using the arc-length method
mehr als 5 Jahre ago | 15 downloads |

How to call abaqus from matlab?
!abaqus job=job_1 without the extension (*.inp). If you want to obtain the results of this analysis back to Matlab, then you hav...
mehr als 5 Jahre ago | 0
Abaqus and Matlab (Optimising the simulation parameters in Matlab by calling Abaqus as external subroutine)
You can use the new toolbox developed to serve as an interface between Abaqus and Matlab, which is Abaqus2Matlab. With this tool...
mehr als 5 Jahre ago | 0
Solved
make an eye matrix which element is 1:n
for a given input n, make an n by n matrix which contains elements 1:n for example input =5 output = [1 0 0 0 0;0 2 0 0 0; 0...
mehr als 5 Jahre ago
Solved
basics -making a matrix
make a matrix which contains input x as the last element. the intervals should be +1 ex) input = 5 output= [0 1 2 3 4 5] ex)...
mehr als 5 Jahre ago
Solved
Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
fast 6 Jahre ago
Solved
surrounded centroid
create a [n*n] matrix. n must be odd number. its centroid is n which is surrounded by n-1. example: surround(5)= 1 2 ...
fast 6 Jahre ago
Solved
create a square matrix
create a [n*n] matrix. example: mat(4)= [ 1 4 9 16 4 4 9 16 9 9 ...
fast 6 Jahre ago
Solved
Calculate the hypotenuse of a right triangle without using ^ and sqrt ()
Find out the hypotenuse of right triangle. Say a = 4, b = 3 then c = 5 Please don't use ^ and sqrt() function.
fast 6 Jahre ago
Solved
Solve sin(x) without sin(x)
Calculate y = sin(x) x = 0 -> y= 0 without the use of sin(x) or cos(x)
fast 6 Jahre ago