photo

seif seif


menufia

Last seen: bijna 2 jaar ago Active since 2015

Followers: 0   Following: 0

Message

Statistics

All
  • First Answer
  • Solver

View badges

Feeds

View by

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

meer dan 6 jaar ago | 1

Answered
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...

meer dan 6 jaar ago | 0