deletion of first row in the matrix

3 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by