Making an array using loop
1 回表示 (過去 30 日間)
古いコメントを表示
A=[2;3;4;5;12;13;14;15;16;17;24;25;26;27;28;29;36;37;38;39;40;41;48;49;50;51;52;53;60;61;62;63;64;65;72;73;74;75;76;77;84;85;86;87;88;89;96;97;98;99;100;101;108;109;110;111;112;113;120;121];
How to make an array like A using loop. Thank you.
3 件のコメント
Rik
2020 年 12 月 31 日
編集済み: Rik
2020 年 12 月 31 日
Help us help you: explain the pattern and we might be able to help you write the code to create it.
The pattern is not obvious to me (nor, apperently, to Cris). It is also missing from the OEIS, which is generally an indication that the sequence is fairly obscure.
回答 (1 件)
Paul Hoffrichter
2020 年 12 月 31 日
編集済み: Paul Hoffrichter
2021 年 1 月 1 日
Change ORIGINAL_POST to false to get slightly different result.
clearvars; clc; % remove previous debug runs
lenA = 60; % assumes you know the length of A
A = zeros(lenA,1); % pre-allocate A
maxSeqLen = 6;
ORIGINAL_POST = true;
if ORIGINAL_POST
start = 2;
seqLength = 4;
else
% rng(123);
start = randi(maxSeqLen,1);
seqLength = randi(maxSeqLen);
end
nominalSequence = 1:maxSeqLen;
skip = 7;
% Initialize
A(1:seqLength) = start:(start + seqLength - 1);
startLoc = seqLength + 1;
k = seqLength + 1;
while startLoc + maxSeqLen - 1 <= lenA
start = A(startLoc - 1) + skip;
A(startLoc:startLoc + maxSeqLen - 1) = start: start + maxSeqLen - 1;
start = start + maxSeqLen - 1 + skip;
startLoc = startLoc + maxSeqLen;
end
if startLoc <= lenA
maxSeqLen = lenA - startLoc + 1;
A(startLoc:startLoc + maxSeqLen - 1) = start: start + maxSeqLen - 1;
% if you cannot pre-allocate A, and have to enter values one at a time,
% then you can add elements like this: A = [A; new-value];
end
2 件のコメント
Rik
2020 年 12 月 31 日
You don't print anything to the command window, so what is the clc doing? And why are you suggesting clear all? mlint is clearly warning you not to use this.
Paul Hoffrichter
2021 年 1 月 1 日
編集済み: Paul Hoffrichter
2021 年 1 月 1 日
clc - used to remove previous debug runs where printing was done.
clear all - good point. Edited to say clearvars.
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!