标签: matlab matrix indexing
例如,我有一个变量i,我想将i=(2,3)设置为B(i)=B(2,3)=7。
i
i=(2,3)
B(i)=B(2,3)=7
B=[1 2 3 4 5 6 7 8]; i=('2,3'); B(i)
我有点卡在这里。请帮忙。