Community Profile

photo

seif seif


menufia

Last seen: mer än ett år 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));

ungefär 6 år 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...

ungefär 6 år ago | 0