photo

Delladj Kamel


University Badji-Mokhtar

2015년부터 활동

Followers: 0   Following: 0

메시지

통계학

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
How can I append arrays onto the same variable in a series of loops?
*It's easy, just type this code and you'll get what you are expecting* x = zeros(2,6); for i=1:9 x(:,:,i)...

대략 9년 전 | 0

답변 있음
How to calculate the sum of each row in a matrix?
You can produce a sum vector over rows of matrix "A" by typing sum(A') where A' is the matrix transpose of matrix "A".

대략 9년 전 | 3