Lateef Adewale Kareem
CypherCrescent ltd, Nigeria
Followers: 0 Following: 0
Applied Mathematician, Mechanical and Petroleum Engineer. Professional Interests: Reservoir Engineering, Fluid Mechanics, Solid Mechanics, Numerical Optimization
Python, C++, C#, MATLAB, SQL, Visual Basic
Spoken Languages:
English
Pronouns:
He/him
Professional Interests:
Numerical Integration and Differential Equations, Programming, Fluid Mechanics, Reservoir Engineering
Statistica
RANK
1.218
of 295.410
REPUTAZIONE
58
CONTRIBUTI
1 Domanda
15 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.0%
VOTI RICEVUTI
21
RANK
761 of 20.224
REPUTAZIONE
2.391
VALUTAZIONE MEDIA
4.00
CONTRIBUTI
59 File
DOWNLOAD
291
ALL TIME DOWNLOAD
19303
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Inviato
Shear Force Bending Moment
This function SFBM.m calculates and draw the shear force and bending moment diagrams.
2 mesi fa | 146 download |
Inviato
EigenZeros
%% This function computes atmost N zeros (z) of a given eigen function between xmin and xmax
5 mesi fa | 2 download |
Inviato
LinProg(f, AInEq, bInEq, AEq, bEq, debug)
Solves Linear Programming poblem
5 mesi fa | 2 download |
Inviato
Rank 1 Update for LU factors
% This function updates the LU factorization (PA = LU) of a Matrix A following a rank % one update of the matrix A = A + alpha*y...
10 mesi fa | 2 download |
Inviato
Vertices2Volume
This function computes the volume of a 3D objects given its vertices X, Y, Z.
circa un anno fa | 1 download |
Inviato
Interactive Truss Solver
This solver allows user to interactively design a simply supported truss and then solve the truss for a given load.
circa un anno fa | 7 download |
Inviato
Gauss Laguerre Integration Nodes and Weights
Gauss Laguerre method.
oltre un anno fa | 4 download |
Inviato
Particle Swarm Optimization
Function for searching for minimizer of a function
oltre un anno fa | 2 download |
Inviato
Fast_chebyshevT
This file works exactly as inbuilt chebyshevT in matlab, but its over 1000 times faster.
circa 2 anni fa | 1 download |
Inviato
Simulation of Collison Pi Counter
This is matlab simulation of the video "The most unexpected answer to a counting puzzle" by 3blue 1 brown
circa 2 anni fa | 1 download |
Inviato
QuadCopter
This file contains Quadcopter model and flight controller for Quadcopter simulation
circa 2 anni fa | 7 download |
Inviato
SurfaceArea
computes the are of a surf plot whose handle is surfhandle
circa 2 anni fa | 1 download |
Inviato
Residual Specific Heat Capacity
This script compute the ratio of the residual specific heat capacity to the universal gas constant
circa 2 anni fa | 1 download |
Inviato
MixIntLinProg
This algorithm solves the mixed integer linear programming problem.
oltre 2 anni fa | 2 download |
Inviato
Bricks Game
Bricks Game is intended for the entertainment of Matlab programmers.
oltre 2 anni fa | 4 download |
Taylor series for e^x with loop
%% This is more efficient x = 2; v = 1; n = 1; d = 1; for i = 1:20 n = n*x; d = d*i; v = v + n/d; end fp...
oltre 2 anni fa | 0
Inviato
Pythagoras Tree
The Pythagoras tree is a plane fractal constructed from squares.
oltre 2 anni fa | 1 download |
Scatter with colour-coded markers (matrix)
minv = min(min(velo)); maxv = max(max(velo)); c = (velo - minv)./(maxv - minv); scatter(x(:),y(:),10,c(:))
oltre 2 anni fa | 1
Solving nonlinear function using fzero, Error Function values at the interval endpoints must differ in sign.
Imp=100; t0=1e-6; P=204000000; Tf=2e-3; x = nan; options = optimset('Display','off'); % show iterations x0 = 2; while(i...
oltre 2 anni fa | 0
Help plotting a circular orbit
G = 6.6743*10^-11; %Gravitational Constant, Units: m^3 kg^-1 s^-2 Mc = 5.972*10^24; %Mass of cent...
oltre 2 anni fa | 0
| accettato
Inviato
Geneva Mechanism
This file explains how to create geneva mechanism
oltre 2 anni fa | 4 download |
Inviato
Particle Swam Optimization Curve Fitting
Parameter fitting by Particle Swarm Optimization
oltre 2 anni fa | 1 download |
Inviato
Lagrange Interpolation
Computes estimates of a function sing lagrange interpolation
oltre 2 anni fa | 1 download |
How i implement Adams Predictor-Corrector Method from general code ?
clc; clear all; h = 0.01; mu = 20; f_m = @(t,y) mu*(y-cos(t))-sin(t); exact = @(t) exp(mu*t)+cos(t); [t,y_m] = dd2(f_m,[0, ...
oltre 2 anni fa | 0
| accettato
Not enough input arguments.
%% Backward Difference Formula Method %% clc; clear all; h=0.01; t=0:h:1; n=numel(t); mu = 20; f_m = @(t,y) mu*(y-cos(t)...
oltre 2 anni fa | 0