photo

Edwin Soto-Aponte


Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

4 Questions
0 Answers

RANK
66,343
of 301,421

REPUTATION
0

CONTRIBUTIONS
4 Questions
0 Answers

ANSWER ACCEPTANCE
75.0%

VOTES RECEIVED
0

RANK
 of 21,269

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 174,475

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


How to add a row of zeros to a matrix using for and if?
So, nm = max(MP(:,1)); I have MP: MP = 1 3 2 0 3 1 and PM PM = 0.25 0 0 ...

8 years ago | 1 answer | 0

1

answer

Question


How to add values to a matrix using for and if?
In the code below, I want to add the number missing in the MP column 1 matrix. In this case the number is three and always the f...

8 years ago | 1 answer | 0

1

answer

Question


How to add a value (number 2 in the first column and 0 in the second column for this particular example) to a matrix in a loop?
nm = 3; MP = [1 3;3 1] for i = 1:nm if i == MP(i,1) m = MP(i,1) p = MP(i...

8 years ago | 1 answer | 0

1

answer

Question


How to apply a format to one column only using fprintf?
The result of a two variables are going to be together in a 2 column array. x = [1.000 2.000 ....] y = [0.89 0.98......] xy ...

8 years ago | 2 answers | 0

2

answers