To calculate the end point.

조회 수: 3 (최근 30일)
Odien
Odien 2015년 7월 31일
답변: Image Analyst 2015년 7월 31일
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 ?

답변 (2개)

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

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2015년 7월 31일
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));

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by