Creating a matrix help

2 ビュー (過去 30 日間)
Muhendisleksi
Muhendisleksi 2017 年 3 月 26 日
コメント済み: Star Strider 2017 年 3 月 27 日
a=[111.23199; 354.44814; 186.69329]
b=[111.23199;111.23199;354.44814;354.44814;186.69329;186.69329]
How can I create a matrix "a" in the form of a matrix "b"?

回答 (2 件)

Star Strider
Star Strider 2017 年 3 月 26 日
This works:
aa = [a'; a'];
aa = aa(:)
aa =
111.23
111.23
354.45
354.45
186.69
186.69
  5 件のコメント
Muhendisleksi
Muhendisleksi 2017 年 3 月 27 日
Thank you so much
Star Strider
Star Strider 2017 年 3 月 27 日
My pleasure.
If my Answer helped you solve your problem, please Accept it.

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


Jan
Jan 2017 年 3 月 26 日
With a modern Matlab version:
aa = repelem(a, 2, 1)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by