[x,index]=a(1,:)怎么修改 a = [3 9 4 5 2 7; 6 8 3 3 1 4;2,3,4,5,6,7]
我想要实现 x=[3 9 4 5 2 7]
index=[1,2,3,4,5,6]
请问相关的代码应该是什么样的?

 Akzeptierte Antwort

stfwfpn
stfwfpn am 22 Mai 2023

0 Stimmen

引用矩阵对变量赋值时只能
x = a( 1, : )
右侧为矩阵时不能用 = 给多个变量赋值
另外你这个 index 也看不出跟 a 有什么关系

Weitere Antworten (0)

Kategorien

Tags

Gefragt:

am 22 Mai 2023

Beantwortet:

am 22 Mai 2023

Community Treasure Hunt

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

Start Hunting!