How do I concatenate properly?
古いコメントを表示
for kk = 1:length(amps)
nStart = round(fs .* tStart(kk))+1; %-- add one to avoid zero index
xNew = shortSinus(amps(kk), freqs(kk), phases(kk), fs, durs(kk));
Lnew = length(xNew);
nStop = Lnew + nStart - 1; %======== Add code
xx(nStart:nStop) = xx(nStart:nStop) + xNew;
%xx(nStart + ((kk - 1)):...
% nStop + ((kk - 1))) ...
% = xx(nStart + ((kk - 1):...
% nStop + ((kk - 1)) + xNew;
end
4 件のコメント
Gonzalo
2022 年 9 月 8 日
Torsten
2022 年 9 月 8 日
Concatenation would be
xx = [xx,xnew]
I don't know exactly what you try do do with the xx array.
Cris LaPierre
2022 年 9 月 8 日
This is not concatenation. This is indexing into and modifying an array. See Ch 5 of MATLAB Onramp for more on how to do this.
This is horizontal concatenation of xx with xnew.
a = [1 2 3];
b = [4 5 6];
c1 = [a,b]
c2 = horzcat(a,b)
回答 (1 件)
Cris LaPierre
2022 年 9 月 8 日
編集済み: Cris LaPierre
2022 年 9 月 8 日
You need to put parentheses around your values to the left and right of the colon operators to force the order of operations to calculate a single value on each side.
xx(nStart + ((kk - 1)):nStop + ((kk - 1)))
should be
xx((nStart + kk - 1):(nStop + kk - 1))
Simplifying your example
xx=1:10
nStart = 2;
nStop = 5;
kk = 1;
xNew = 100;
xx((nStart + kk - 1):(nStop + kk - 1)) = xx((nStart + kk - 1):(nStop + kk - 1)) + xNew
カテゴリ
ヘルプ センター および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!