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

meer dan 2 jaar ago | 0

| accepted

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

meer dan 2 jaar 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

meer dan 2 jaar ago | 1 download |

Thumbnail

Submitted


Block Tridiagonal Solver
Solves the block tridiagonal system Ax=d, where a, b, and c are the three diagonals of A.

meer dan 2 jaar ago | 1 download |

Thumbnail

Submitted


Block Diagonal
This code allows you to process block diagonal elements. Its like the generalization of inbuilt diag.

meer dan 2 jaar ago | 1 download |

Thumbnail

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

meer dan 2 jaar ago | 1 download |

Submitted


Gauss Legendre Integration Node and Weights
This script is for computing definite integrals using Legendre-Gauss

meer dan 2 jaar ago | 4 downloads |

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

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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:...

meer dan 2 jaar 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...

meer dan 2 jaar ago | 6 downloads |

Thumbnail

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

bijna 3 jaar ago | 0

| accepted

Submitted


Gears
Gear 1

bijna 3 jaar ago | 2 downloads |

Thumbnail

Submitted


AnimateNewtonRaphson
This file solves a univariate equation using newton raphson's method and makes gif file for you to visualize the process.

meer dan 3 jaar ago | 1 download |

Thumbnail

Submitted


Simulation of floating balls on water
This file describes how to simulate floating balls on water

meer dan 3 jaar ago | 1 download |

Thumbnail

Submitted


Tube Function
This function is the numerical analogy to the tube function in maple

meer dan 3 jaar ago | 2 downloads |

Thumbnail

Submitted


VideoJoiner
Helps to join two videos together.

meer dan 4 jaar ago | 1 download |

Submitted


hbarliveCOVID19v3
This file helps to visualize the spread of COVID 19

bijna 5 jaar ago | 2 downloads |

Thumbnail

Submitted


AnimateSeriesAddition
This mfile animates the addition of signals.

bijna 5 jaar ago | 1 download |

Thumbnail

Submitted


Animate
This program animates the transformation of one graphic object to another.

bijna 5 jaar ago | 1 download |

Thumbnail

Submitted


LogliveplotCOVID19
Coronavirus Tracker - Log Live-Map of Spread

bijna 5 jaar ago | 1 download |

Thumbnail

Submitted


fitVirusCV19varW (Variable weight fitting of SIR Model)
Estimation of coronavirus COVID-19 epidemic evaluation by the SIR model, Code receives and plots most recent data from HDX.

bijna 5 jaar ago | 2 downloads |

Thumbnail

Submitted


VecNorm
It computes vecnorm for those using matlab version earlier than 2017b

bijna 5 jaar ago | 1 download |

Submitted


SIRModelSimulation
% This file simulates SIR model for the spread of infectious diseases

bijna 5 jaar ago | 1 download |

Thumbnail

Submitted


SolveTrusses
% This file explains how to use the program SolveTrusses and displays the % force in each member on them.

ongeveer 5 jaar ago | 2 downloads |

Thumbnail

Answered
How to set outside a country values to NaN, in a 3d array (lat x lon x time) ?
The best solution is to use google map to get latitudes and logitudes of vertices of a polygon representing the external boundar...

meer dan 5 jaar ago | 1

Submitted


PolarPlot.m
This script creates a polar plot for those using versions of matlab thats earlier than 2016a

meer dan 5 jaar ago | 2 downloads |

Thumbnail

Submitted


Solve ordinary differential equations with events
This script solves an ordinary differential equation with events.

meer dan 5 jaar ago | 1 download |

Load more