フィルターのクリア

What does A=A((x:y,:) mean?

14 ビュー (過去 30 日間)
Zhafirah Ariana
Zhafirah Ariana 2020 年 7 月 19 日
回答済み: Abhishek Gangwar 2020 年 7 月 19 日
Hi! So I try tu run my program that include A=A((x:y,:)) in it but it said Unrecognized function or variable 'a'. I thought it was for declaring zeros matrix? I really have no idea for this

回答 (2 件)

madhan ravi
madhan ravi 2020 年 7 月 19 日
x = 1
y = 2
A = [1, 2;
3, 4;
5, 6]
A(x:y, :) % read about matrix indexing
doc zeros % to create a zeros matrix

Abhishek Gangwar
Abhishek Gangwar 2020 年 7 月 19 日
Okay, so first check that you had defined matrix 'A' in you code before trying to access it and use single paranthesis for indexing, this should be "A=A(x:y, :)".

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by