How I can create a three dimensional succession
2 ビュー (過去 30 日間)
古いコメントを表示
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!
0 件のコメント
採用された回答
その他の回答 (2 件)
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
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!