フィルターのクリア

deletion of first row in the matrix

3 ビュー (過去 30 日間)
ARJUN K P
ARJUN K P 2015 年 9 月 16 日
回答済み: Thorsten 2015 年 9 月 16 日
my matrix is the form:
Ki = [25 35, 56 41,85 78] i want delete the first row data..
answer like:
56 41, 85 78

採用された回答

Thorsten
Thorsten 2015 年 9 月 16 日
Use ; to separate rows
Ki = [25 35; 56 41; 85 78];
Delete first row
Ki(1,:) = [];

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by