"Subscripted assignment dimension mismatch" Please correct my program. tell me idea/logic to make sequence

1 Ansicht (letzte 30 Tage)
s = [30 30 30 30 30 30 0 0 0 0];
s = sort(s, 'descend'); %sorting sequence s
uniques = unique(s); % finding unique elements
for k = 1: length(uniques)
ua(:,:,k) = repmat(uniques(:,k),1 ,(length(s))); %repeating unique values for combine
end
for k= 2:length(s)
for j = length(s)-2:-1:1
for l = 1:6
ua1(:,:,1) = [ua(1, 1:j, 1), ua(1, 1:k, 2)]; %cut and combine values
end
end
end
output ua1
ua1 =
0 0 0 0 0 0 0 0 30 30
my loop for ua1 is not working. please help me.
I want to generate sequence
ua1(:,:,1) = [0 0 0 0 0 0 0 0 30 30];
ua1(:,:,2) = [0 0 0 0 0 0 0 30 30 30];
ua1(:,:,3) = [0 0 0 0 0 0 30 30 30 30];
ua1(:,:,4) = [0 0 0 0 0 30 30 30 30 30];
ua1(:,:,5) = [0 0 0 0 30 30 30 30 30 30];
ua1(:,:,6) = [0 0 0 30 30 30 30 30 30 30];
or if possible tell me trick to make
[0 0 0 0 0 0 0 0 0 30;
0 0 0 0 0 0 0 0 30 30;
0 0 0 0 0 0 0 30 30 30;
0 0 0 0 0 0 30 30 30 30;
0 0 0 0 0 30 30 30 30 30;
0 0 0 0 30 30 30 30 30 30;
0 0 0 30 30 30 30 30 30 30;
0 0 30 30 30 30 30 30 30 30;
0 30 30 30 30 30 30 30 30 30];

Akzeptierte Antwort

Stephen23
Stephen23 am 22 Feb. 2016
Bearbeitet: Stephen23 am 22 Feb. 2016
Don't waste time with all of those loops when you can simply use hankel to generate the whole matrix:
>> hankel(zeros(1,9),[0,30*ones(1,9)])
ans =
0 0 0 0 0 0 0 0 0 30
0 0 0 0 0 0 0 0 30 30
0 0 0 0 0 0 0 30 30 30
0 0 0 0 0 0 30 30 30 30
0 0 0 0 0 30 30 30 30 30
0 0 0 0 30 30 30 30 30 30
0 0 0 30 30 30 30 30 30 30
0 0 30 30 30 30 30 30 30 30
0 30 30 30 30 30 30 30 30 30
  6 Kommentare

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 22 Feb. 2016
ua1(:,:,1) = [ua(1, 1:j, 1), ua(1, 1:k, 2)]; %cut and combine values
In that code, 1:j will have one length for the first j, but for the next j would have a different length. Therefore for different iterations of j, the right hand side will be different sizes, but each time you try to write it to the same size on the left.
  1 Kommentar
Triveni
Triveni am 22 Feb. 2016
1:j is in decreasing order....and 1:k is in increasing order...size of ua1 matrix same for every iteration. Sir if you have any idea ...please correct this or make any program with your blessings..for generating these sequnces.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by