フィルターのクリア

Concatenating element- what the different?

2 ビュー (過去 30 日間)
Harel Harel Shattenstein
Harel Harel Shattenstein 2015 年 7 月 19 日
編集済み: James Tursa 2015 年 7 月 19 日
What is the different between those code:
NewVector=[Vector1,element,vector2];
and
NewVector=[Vector1:element:vector2];

採用された回答

James Tursa
James Tursa 2015 年 7 月 19 日
編集済み: James Tursa 2015 年 7 月 19 日
E.g.,
[1,3,10] is a three element vector with the elements 1, 3, and 10.
[1:3:10] uses the colon operator and is a four element vector starting with 1 and counting by 3 until 10 is reached or exceeded, so it has the elements 1, 4, 7, 10.

その他の回答 (0 件)

カテゴリ

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