About 74 results
Open links in new tab
  1. linspace - Generate linearly spaced vector - MATLAB - MathWorks

    This MATLAB function returns a row vector of evenly spaced points between x1 and x2.

  2. How to use linspace and what is it's purpose? - MATLAB Answers

    Jun 4, 2016 · There are two principal ways to create vectors in MATLAB. One is the colon (:) operator, and the other is the linspace function. The principal difference is that with the colon operator, you …

  3. Plotting sine functions using linspace command - MATLAB Answers ...

    Feb 25, 2024 · The variable, t, should contain 450 data points, in the interval shown below. You should be using the linspace command for this because you are provided with the number of points in the …

  4. Linearly Spaced Vectors - MATLAB - MathWorks

    Oct 26, 2007 · Linearly Spaced Vectors (Originally posted on Doug's MATLAB Video Tutorials blog.) When I look at code written by new users, sometimes, I will see code like this: a = [1 2 3 4 5 6 7 8 9 …

  5. colon - Vector creation, array subscripting, and for-loop iteration ...

    Tips The for reference page has a description of how to use : in the context of loop statements. linspace is similar to the colon operator :, but it gives direct control over the number of points and always …

  6. How to use linspace on a matrix - MATLAB Answers - MathWorks

    Apr 17, 2021 · How to use linspace on a matrix. Learn more about matrix, indexing, matlab, vectors, arrays

  7. Linspace with varying increment - MATLAB Answers - MATLAB Central

    Nov 12, 2019 · Linspace with varying increment. Learn more about numbers, linspace, colon operator, sequences, sequence, number generation, non-linear numbers MATLAB

  8. using linspace in a matrix incrementing by a certain number - MATLAB ...

    Jan 19, 2023 · using linspace in a matrix incrementing by a... Learn more about linspace, matrix, array, indexing, matlab MATLAB

  9. linspace - MATLAB Answers - MATLAB Central - MathWorks

    Jan 18, 2012 · I want to create a vector which runs from 1 to 260 with increments of 360 between every whole number. I can do this manually by: y=linspace(1,2,360); y1=linspace(2,3,360);... and so on. By ...

  10. Plot a graph with linspace - MATLAB Answers - MATLAB Central

    Jan 7, 2021 · Accepted Answer: Daniel Pollard Open in MATLAB Online Hi guys, I want to plot this graph with Linspace, This is what i got; Theme Copy t = linspace (0,3,4)