photo

seif seif


menufia

Last seen: 2 years 前 自 2015 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Vector Matrix multiplication (Row wise)
I'd suggest a faster version than the above methods: L = L .* v(:, ones(N,1));

6 years 前 | 1

已回答
Shrink a 1-D array (vector) by removing all the columns with a value of zero
Using *nonzeros* is also very simple (note that the output is a column vector): NewSimpleArray = nonzeros(SimpleArray) N...

6 years 前 | 0