photo

seif seif


menufia

Last seen: 3 years ago Active since 2015

Followers: 0   Following: 0

Message

Statistics

All
MATLAB Answers

0 Questions
2 Answers

Cody

0 Problems
17 Solutions

RANK
18,191
of 300,392

REPUTATION
2

CONTRIBUTIONS
0 Questions
2 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
27,677
of 168,335

CONTRIBUTIONS
0 Problems
17 Solutions

SCORE
180

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 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));

8 years 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...

8 years ago | 0