photo

Lateef Adewale Kareem


CypherCrescent ltd, Nigeria

Last seen: 12 days 前 自 2015 起处于活动状态

Followers: 0   Following: 0

消息

Applied Mathematician, Mechanical and Petroleum Engineer. Professional Interests: Reservoir Engineering, Fluid Mechanics, Solid Mechanics, Numerical Optimization

Programming Languages:
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

统计学

All
MATLAB Answers

1 个提问
15 个回答

File Exchange

61 文件

Cody

0 个问题
7 个答案

排名
1,250
of 297,457

声誉
58

贡献数
1 个提问
15 个回答

回答接受率
0.0%

收到投票数
21

排名
735 of 20,438

声誉
2,480

平均
4.00

贡献数
61 文件

下载次数
297

ALL TIME 下载次数
19988

排名
40,985
of 158,938

贡献数
0 个问题
7 个答案

评分
91

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Flipbook Mini Hack Participant
  • 3 Month Streak
  • Knowledgeable Level 2
  • Solver
  • Commenter
  • 5-Star Galaxy Level 5
  • Personal Best Downloads Level 4
  • MATLAB Mini Hack 2022 Participant
  • Editor's Pick
  • First Review
  • First Submission

查看徽章

Feeds

排序方式:

已提交


Numerical Inversion of Laplace Transform
This function performs numerical inversion of laplace transform.

12 days 前 | 2 次下载 |

0.0 / 5
Thumbnail

已提交


Burgers PDE
This file shows how to implement numerical solution of Burgers Equation

2 months 前 | 2 次下载 |

0.0 / 5
Thumbnail

已提交


Shear Force Bending Moment
This function SFBM.m calculates and draw the shear force and bending moment diagrams.

6 months 前 | 164 次下载 |

4.8 / 5
Thumbnail

已提交


lmcurvefit
curve fitting using Levenberg Marquardt algorithm

6 months 前 | 1 次下载 |

2.0 / 5

已提交


EigenZeros
%% This function computes atmost N zeros (z) of a given eigen function between xmin and xmax

9 months 前 | 2 次下载 |

0.0 / 5
Thumbnail

已提交


erfz(z)
erfz(z) returns the error function of complex argument

9 months 前 | 1 次下载 |

1.0 / 5
Thumbnail

已提交


LinProg(f, AInEq, bInEq, AEq, bEq, debug)
Solves Linear Programming poblem

9 months 前 | 1 次下载 |

1.0 / 5
Thumbnail

已提交


surf2stl
Write STL file from surface data.

10 months 前 | 7 次下载 |

5.0 / 5
Thumbnail

已提交


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...

1 year 前 | 1 次下载 |

0.0 / 5

已提交


Vertices2Volume
This function computes the volume of a 3D objects given its vertices X, Y, Z.

1 year 前 | 2 次下载 |

0.0 / 5
Thumbnail

已提交


Interactive Truss Solver
This solver allows user to interactively design a simply supported truss and then solve the truss for a given load.

1 year 前 | 5 次下载 |

0.0 / 5
Thumbnail

已提交


Gauss Laguerre Integration Nodes and Weights
Gauss Laguerre method.

1 year 前 | 4 次下载 |

0.0 / 5
Thumbnail

已提交


Particle Swarm Optimization
Function for searching for minimizer of a function

1 year 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


Fast_chebyshevT
This file works exactly as inbuilt chebyshevT in matlab, but its over 1000 times faster.

2 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


Simulation of Collison Pi Counter
This is matlab simulation of the video "The most unexpected answer to a counting puzzle" by 3blue 1 brown

2 years 前 | 4 次下载 |

0.0 / 5
Thumbnail

已提交


QuadCopter
This file contains Quadcopter model and flight controller for Quadcopter simulation

2 years 前 | 7 次下载 |

0.0 / 5
Thumbnail

已提交


SurfaceArea
computes the are of a surf plot whose handle is surfhandle

2 years 前 | 2 次下载 |

0.0 / 5
Thumbnail

已提交


Residual Specific Heat Capacity
This script compute the ratio of the residual specific heat capacity to the universal gas constant

2 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


Umbrella generates an umbrella
Creates an umbrella

2 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


MixIntLinProg
This algorithm solves the mixed integer linear programming problem.

2 years 前 | 2 次下载 |

0.0 / 5
Thumbnail

已提交


Bricks Game
Bricks Game is intended for the entertainment of Matlab programmers.

2 years 前 | 4 次下载 |

0.0 / 5
Thumbnail

已回答
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...

2 years 前 | 0

已提交


Siepinski Carpet
This algorithm generates sierpinski carpet

2 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


Pythagoras Tree
The Pythagoras tree is a plane fractal constructed from squares.

2 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已回答
Scatter with colour-coded markers (matrix)
minv = min(min(velo)); maxv = max(max(velo)); c = (velo - minv)./(maxv - minv); scatter(x(:),y(:),10,c(:))

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 0

| 已接受

已提交


Geneva Mechanism
This file explains how to create geneva mechanism

3 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


Particle Swam Optimization Curve Fitting
Parameter fitting by Particle Swarm Optimization

3 years 前 | 1 次下载 |

0.0 / 5

已提交


Lagrange Interpolation
Computes estimates of a function sing lagrange interpolation

3 years 前 | 1 次下载 |

0.0 / 5

加载更多