Feeds
已回答
How to extract and replace from small matrix into big matrix without zeros. here is the code examples:
D = zeros(10,10); D(4:8,3:7) = B; iD = D>0==1; A(iD)=D(iD)
How to extract and replace from small matrix into big matrix without zeros. here is the code examples:
D = zeros(10,10); D(4:8,3:7) = B; iD = D>0==1; A(iD)=D(iD)
5 years 前 | 0
| 已接受

