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년 초과 전 | 0
| 수락됨

