How I can create a three dimensional succession

조회 수: 2 (최근 30일)
ric1321
ric1321 2019년 1월 6일
댓글: Stephen23 2019년 1월 6일
Hi to everyone! What I would like to know is how I can define a 1x1xN element considering that in the third dimension I would like to have something like:
freq = (5:0.5:15)*1e9;
I hope I've been clear enough!

채택된 답변

Stephan
Stephan 2019년 1월 6일
freq(1,1,:) = (5:0.5:15)*1e9;
  댓글 수: 2
ric1321
ric1321 2019년 1월 6일
Thank you!
Stephen23
Stephen23 2019년 1월 6일
Note that this is fragile, and can throw an error if freq already exists in the workspace and has an incompatible size.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

John D'Errico
John D'Errico 2019년 1월 6일
편집: John D'Errico 2019년 1월 6일
As simple as one line like this:
freq = reshape((5:0.5:15)*1e9,1,1,[]);
As you can see, it has the desired shape.
size(freq)
ans =
1 1 21

madhan ravi
madhan ravi 2019년 1월 6일
N=numel(freq);
f=zeros(1,1,N);
f(:,:,:)=freq

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by