About 110 results
Open links in new tab
  1. ASCII Chart in Matlab

    ASCII Chart in Matlab In this article we have three goals: first, we’re going to develop an ASCII chart to understand instructions char and double in Matlab; second, we’re going to work with a …

  2. Calculus Problems - let's use Matlab to tackle them

    Calculus Problems - some ideas and approaches with Matlab Calculus problems are a branch of mathematics focused on limits, functions, derivatives and integrals.

  3. Quadratic Equations - solve them with this simple code

    Learn to solve quadratic equations We are going to create now a Matlab program that calculates the quadratic roots (roots of quadratic equations). The equation must be in the following form: …

  4. Definite Integrals - how to calculate in Matlab

    We’re going to focus this time on the calculation of definite integrals using the Matlab already built-in functions. Why we can evaluate definite integrals There’s a number of reasons for …

  5. hist - Histograms in Matlab - easy examples

    hist - Histograms in Matlab Commands for histograms and vertical data The hist instruction in Matlab, without output arguments, produces a histogram bar plot of the results. The bar edges …

  6. Singular Value Decomposition - experiments in Matlab

    Let's find with Matlab the singular value decomposition of A = [ 0 -1 -2 1 1 0] We simply type: [U,S,V] = svd (A) and the above operation produces a diagonal matrix S, of the same …

  7. Step function - unit step with Matlab - matrixlab-examples.com

    How to plot the unit step function - Heaviside - with Matlab. Let's see some examples of discrete operations...

  8. Factorials - ways to code them without special functions

    Let’s say that we need to calculate without using the Matlab factorial function. As a condition, we may assume that the user will know that n > m, and that n and m are positive integers. We can …

  9. Simultaneous Equations: working with matrices in Matlab

    Solving a set of linear simultaneous equations is easy in Matlab. It is, maybe, the most used operation in science and engineering, too. Solving a system of equations on a computer is …

  10. Impulse function - Dirac delta with Matlab

    How to plot the impulse function with Matlab. Some examples of Dirac delta or unit function...