フィルターのクリア

Contents in a Vector

2 ビュー (過去 30 日間)
Anne Nguyen
Anne Nguyen 2019 年 9 月 26 日
回答済み: Mahesh Taparia 2019 年 9 月 30 日
Consider the following matrix.
A= 13 10 7
1 5 9
5 15 25
How do I 1. Write the contents of the element in the last row, third column to variable m1 and print m1? 2. Write the contents of the entire third column to vector m2 and print m2? 3. Write the contents of the second and third rows to matrix m3 and print m3?
  1 件のコメント
Adam Danz
Adam Danz 2019 年 9 月 26 日
Give this page about 10 minutes of reading and you'll not only answer those questions but you'll understand the basics of matlab indexing.

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

回答 (1 件)

Mahesh Taparia
Mahesh Taparia 2019 年 9 月 30 日
Hi
You can run the following command to access and display the array elements which you have asked. The solution is as per your question number:
1.
m1=(A(end,3));
disp(m1)
2.
m2=(A(:,3));
disp(m2)
3.
m3=(A(2:3,:));
disp(m3)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by