
Lateef Adewale Kareem
CypherCrescent ltd, Nigeria
Applied Mathematician, Mechanical and Petroleum Engineer. Professional Interests: Reservoir Engineering, Fluid Mechanics, Solid Mechanics, Numerical Optimization
Statistics
RANK
967
of 262.805
REPUTATION
58
CONTRIBUTIONS
1 Question
15 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
21
RANK
1.010 of 17.989
REPUTATION
1.726
AVERAGE RATING
3.80
CONTRIBUTIONS
49 Files
DOWNLOADS
270
ALL TIME DOWNLOADS
14163
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Submitted
Shear Force Bending Moment
This function SFBM.m calculates and draw the shear force and bending moment diagrams.
7 giorni ago | 135 downloads |

Submitted
Bricks Game
Bricks Game is intended for the entertainment of Matlab programmers.
23 giorni ago | 12 downloads |
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...
27 giorni ago | 0
Submitted
Siepinski Carpet
This algorithm generates sierpinski carpet
circa 2 mesi ago | 2 downloads |
Submitted
Pythagoras Tree
The Pythagoras tree is a plane fractal constructed from squares.
circa 2 mesi ago | 3 downloads |
Submitted
Zeros of Bessel function, Legendre function, Trig functions
%% This function computes atmost N zeros (z) between xmin and xmax
2 mesi ago | 2 downloads |
Scatter with colour-coded markers (matrix)
minv = min(min(velo)); maxv = max(max(velo)); c = (velo - minv)./(maxv - minv); scatter(x(:),y(:),10,c(:))
2 mesi ago | 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...
2 mesi ago | 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...
2 mesi ago | 0
| accepted
Submitted
Geneva Mechanism
This file explains how to create geneva mechanism
2 mesi ago | 5 downloads |
Submitted
Particle Swam Optimization Curve Fitting
Parameter fitting by Particle Swarm Optimization
3 mesi ago | 1 download |
Submitted
Lagrange Interpolation
Computes estimates of a function sing lagrange interpolation
3 mesi ago | 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, ...
3 mesi ago | 0
| accepted
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)...
3 mesi ago | 0
Submitted
Block Pentadiagonal Solver
Solves the block pentadiagonal system Ax = f, where a, b, c, d, and e are the five diagonals of A
3 mesi ago | 2 downloads |
Submitted
Block Tridiagonal Solver
Solves the block tridiagonal system Ax=d, where a, b, and c are the three diagonals of A.
3 mesi ago | 1 download |
Submitted
Block Diagonal
This code allows you to process block diagonal elements. Its like the generalization of inbuilt diag.
3 mesi ago | 3 downloads |
Submitted
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...
3 mesi ago | 1 download |
Submitted
Rank 1 Update of Cholesky Factors
% This function updates the Cholesky factorization (A = R'*R) of a Matrix A % following a rank one update of the matrix A = A + ...
3 mesi ago | 1 download |
Submitted
Gauss Laguerre Integration Nodes and Weights
Gauss Laguerre method.
3 mesi ago | 2 downloads |
Submitted
Gauss Legendre Integration Node and Weights
This script is for computing definite integrals using Legendre-Gauss
3 mesi ago | 3 downloads |
Array indices must be positive integers or logical values.
here is another modification to make the code look exactly like the description %% Adam-Bashforth %% clc; clear all; h = 0....
3 mesi ago | 0
| accepted
Solved
Sums of cubes and squares of sums
Given the positive integers 1:n, can you: 1. Compute twice the sum of the cubes of those numbers. 2. Subtract the square...
3 mesi ago
Solved
Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...
3 mesi ago
Solved
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
3 mesi ago
Solved
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
3 mesi ago
Submitted
Lambert_W
% Lambert_W Lambert's W function. % W = lambertw(Z) solves W*exp(W) = Z. % W = lambertw(K,Z) is the K-th branch of this mu...
3 mesi ago | 1 download |
Numerical Laplace inversion with fmincon
I am sorry, I didnt see the problem early. This is the complete code clear all; close all; clc; Data = ... [1 0.003322259 ...
4 mesi ago | 0
| accepted
Submitted
AnimateNewtonRaphson
This file solves a univariate equation using newton raphson's method and makes gif file for you to visualize the process.
10 mesi ago | 2 downloads |
