Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

6 years ago

Solved


How to subtract?
*&plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn* * Imagine you need to subtract one...

6 years ago

Submitted


RK45(dydt, trange, yinit, tol)
RK45 is like matlab's ode45. its can be used on octave as it comes without ode solver.

6 years ago | 3 downloads |

Thumbnail

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

6 years ago

Submitted


cypherroots(a)
This algorithm computes roots of polynomials using newton raphson method

6 years ago | 1 download |

Thumbnail

Submitted


Bairstow(a)
Computes roots of polynomial

6 years ago | 2 downloads |

Thumbnail

Submitted


HowarthsTransformation(varargin)
HowarthsTransformation.m file solves HowarthsTransformation of boundary layer problem .

6 years ago | 1 download |

Thumbnail

Question


how to create classes in matlab
How to create classes of special data type, overload operators for them and use them in further calculations

6 years ago | 1 answer | 0

1

answer

Submitted


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

7 years ago | 3 downloads |

Thumbnail

Submitted


boundarylayerblasius
This is a small m file intended to solve students how to solve boundary layer problem with matlab

7 years ago | 3 downloads |

Thumbnail

Answered
Is there any concept like dictionary or hash tables in matlab like in Python?
Yes. c = containers.Map c('foo') = 1 c(' not a var name ') = 2 keys(c) values(c)

7 years ago | 18

Answered
How to solve a second order linear differential equation with a heaviside function
Since its a second order differential equation, there is no need for y''(0) and since you want to solve numerically, you can ...

7 years ago | 0

Answered
why my iteration prog doesn't work ?
increase your number of iteration, you will meet the tolerance target

7 years ago | 0

Answered
How to find input data that best matches given output data
I guess this is what you wanted fs/2 = 5e11 length(x) = 958576 freq = transpose([10.7 11.213 11.725 12...

7 years ago | 0

Answered
How to write and solve system of differential equations?
This is a pde. To solve this problem, I suggest you use method of lines. Discretize the equation in space. let the solution at e...

7 years ago | 1

Submitted


Numerical Laplace Transform
Often times, we are faced with the need to compute the laplace ransfrom of complex function.

7 years ago | 9 downloads |

Answered
Remove the discontinuity from tan(x) where odd multiples of pi/2
x=linspace(-2*pi,2*pi,200); f=tan(x); f(abs(diff([0 f])) > 15) = NaN;

8 years ago | 0

Submitted


Flash Calculations
This file helps you to compute the split in vapour and mole fractions in vapour and liquid

8 years ago | 3 downloads |

Thumbnail

Submitted


Darcy–Weisbach friction factor
Darcy–Weisbach friction factor

8 years ago | 7 downloads |

Submitted


Rotate function
The function Rotatefxn3D is a numerical analogy of the Maple rotating function Rotate

8 years ago | 1 download |

Thumbnail

Submitted


myanalogueclock
Analogue clock

9 years ago | 1 download |