photo

seif seif


menufia

Last seen: presque 2 ans il y a Actif depuis 2015

Followers: 0   Following: 0

Message

Statistiques

All
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

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

plus de 6 ans il y a | 1

Réponse apportée
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...

plus de 6 ans il y a | 0