To calculate the end point.

2 views (last 30 days)
Odien
Odien on 31 Jul 2015
Answered: Image Analyst on 31 Jul 2015
TO generate array, we can use this code A(1:2:10) which means to create a array with equally spaced with size 2 , start point is 1 and the end point is 10.
The question is, if we wan 20 equally spaced element in an array, size can be any. How to let the Matlab to calculate the end point for us? For example, A(5:6: n ) , i wan a array start with 5 then equally space with size 6 and i wan 20 elements. How to let Matlab find the n ?

Answers (2)

Star Strider
Star Strider on 31 Jul 2015
This works:
A = 5:6:(19*6+5);
  2 Comments
Odien
Odien on 31 Jul 2015
instead of giving formula ( which consider we calculate ourself) , is there any special code can use?
Star Strider
Star Strider on 31 Jul 2015
This is the code for the calculation:
start = 5;
interval = 6;
len = 20;
A = start:interval:((len-1)*interval+start);

Sign in to comment.


Image Analyst
Image Analyst on 31 Jul 2015
He said "A(1:2:10)" so I thought he's looking to extract those elements of A into another array, not to create an A with elements having those values . So I think he's wanting this:
% Generate sample data in A:
A = randi([0, 9], 1, 130)
% Define extraction parameters:
startIndex = 5;
interval = 6;
numSamples = 20; % How many elements we want to extract from A.
% Figure out what the last index will be:
lastIndex = startIndex + (numSamples - 1) * interval
% Extract numSamples from A at the specified start index and spacing:
B = A(startIndex : interval : lastIndex)
% Let's check the length to be sure it's 20:
fprintf('The length of B is %d elements.\n', length(B));

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!