photo

seif seif


menufia

Last seen: fast 2 Jahre vor Aktiv seit 2015

Followers: 0   Following: 0

Nachricht

Statistik

All
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

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

mehr als 6 Jahre vor | 1

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

mehr als 6 Jahre vor | 0