How to trim down data in an array
이전 댓글 표시
Hi,
I have a column vector containing 1000 element.
I really need to reduce the size of the vector to 100 to be able to use it further in my program.
The reduced data must contain the first and last element of the original vector.
My current code is shown below. It does not capture the last element.
Thanks for your help.
a = 1;
b = 200;
A = (b-a).*rand(1000,1) + a;
%
tt = floor(length(A)/10);
if tt == 0
tt = 1;
end
red_A = A(1:tt:end)
댓글 수: 4
Ünal Dikmen
2025년 7월 8일
you can do it simply as below:
...
red_A = A(1:tt:end-1) + A(end);
a = 1;
b = 200;
A = (b-a).*rand(1000,1) + a;
%
tt = floor(length(A)/10)
red_A = A(1:tt:end-1);
size(red_A)
A(end) added to red_A will produce a vector of the same length as red_A, so A(1:tt:end-1) + A(end) would be a vector of length 10. But the task was to produce a vector of length 100.
Ünal Dikmen
2025년 7월 8일
편집: Walter Roberson
2025년 7월 8일
yes, you are right. I thought you wanted to get especially the last element in this vector. if you want to get a constant number of elements (100 as in this example) in a vector, you can use code below:
noel = 100;
npts = numel(A);
interval = ceil(npts-1)/noel;
red_A=A(1:interval:npts);
using this code you can get the number of elements noel in the vector.
a = 1;
b = 200;
A = (b-a).*rand(1000,1) + a;
noel = 100;
npts = numel(A);
interval = ceil(npts-1)/noel;
red_A=A(1:interval:npts);
size(red_A)
Your code has the warning about non-integer increment, and produces a vector that is 1 element too long
red_A(end) == A(end)
But at least the last element appears to be correct.
채택된 답변
추가 답변 (1개)
KSSV
2021년 11월 10일
a = 1;
b = 200;
A = (b-a).*rand(1000,1) + a;
x1 = 1:length(A) ;
x2 = linspace(1,length(A),100) ;
Anew = interp1(x1,A,x2) ;
카테고리
도움말 센터 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!