如何知道提取出的元素是矩阵的第几行第几列的元素。

随机提取矩阵中的某个元素后,如何知道提取出的元素是矩阵的第几行第几列的元素

 Akzeptierte Antwort

hmarda
hmarda am 17 Mai 2023

0 Stimmen

仅供参考
clear
clc
A = rands(5,5)
b = A(8)
[r,v] = find(b==A)

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 17 Mai 2023

Beantwortet:

am 17 Mai 2023

Community Treasure Hunt

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

Start Hunting!