Sequence within a sequence

7 ビュー (過去 30 日間)
Scott
Scott 2012 年 3 月 28 日
Hi I want to be able to create a sequence as such
j=1111,2222,3333,4444
It is for use in a loop where j will jump up by 1 for every forth value of i.
thanks

採用された回答

Wayne King
Wayne King 2012 年 3 月 28 日
Another way (you need Signal Processing Toolbox)
x = 1:4;
y = upsample(x,4);
h = ones(4,1);
y = filter(h,1,y);
  3 件のコメント
Daniel Shub
Daniel Shub 2012 年 3 月 28 日
Despite my answer being faster (and I think simpler), I like your answer better from a theoretical vantage.
Wayne King
Wayne King 2012 年 3 月 28 日
:) I don't doubt that at all!

サインインしてコメントする。

その他の回答 (3 件)

Daniel Shub
Daniel Shub 2012 年 3 月 28 日
n = 5;
m = 3;
reshape(repmat(1:n, m, 1), n*m, 1)

Dr. Seis
Dr. Seis 2012 年 3 月 28 日
To beat a dead horse...
I thought I remembered a version by Walter using cumsum, but I couldn't find the link. Here's my attempt to recreate:
n = 5;
m = 3;
a = zeros(m,n);
a(1,:) = 1;
b = cumsum(reshape(a,1,numel(a)));
Running Daniel's test, I got ~0.65 seconds and ~1.05 seconds for the reshape&cumsum and repmat&reshape versions, respectively. However, what you save in compute time is eaten up by doing extra typing.
  1 件のコメント
Daniel Shub
Daniel Shub 2012 年 3 月 28 日
+1 I knew my answer wouldn't be the fastest. Not only do you have a faster answer, but you also have a faster computer (your answer is faster on my computer also).

サインインしてコメントする。


Scott
Scott 2012 年 3 月 28 日
excellent that did answer my question however I am trying to use this as a simultaneous loop. My guess is using the parfor command:
function [x]= displacementsi(i,z,nx,ny) m=5 n=3
parfor
j=reshape(repmat(1:n, m, 1), n*m, 1)
x(1:4)=z((2*i)-(j-2):(2*i)+(j+1))
end end
I get this error
??? Error: File: displacementsi.m Line: 5 Column: 8 Expression or statement is incomplete or incorrect.
Error in ==> fe_test at 112 [x] = displacementsi(i,displacements,nx,ny);
  2 件のコメント
Daniel Shub
Daniel Shub 2012 年 3 月 28 日
This is a new question and should be asked as such.
Scott
Scott 2012 年 3 月 28 日
ok sorry

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by