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

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

 Accepted Answer

hmarda
hmarda on 17 May 2023

0 votes

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

More Answers (0)

Categories

Asked:

on 17 May 2023

Answered:

on 17 May 2023

Community Treasure Hunt

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

Start Hunting!