photo

Bryce Imbriale


Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

6 Questions
0 Answers

RANK
74,071
of 298,641

REPUTATION
0

CONTRIBUTIONS
6 Questions
0 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
 of 20,635

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 161,878

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

Feeds

View by

Question


I must assume that I have a two dimensional array named twoD. Using iteration (for) and conditionals (if and/or switch), I have to separate twoD into two vectors evenNum and oddNum
a. evenNum contains all of the even numbers in twoD b. oddNum contains all of the odd numbers in twoD any help?

6 years ago | 0 answers | 0

0

answers

Question


I have to find the maximum element in a two dimensional array and replace it with 0.
I don't even know where to start. I am also given an example: given array=[1 2 4 5; 8 -7 5 3; 12 45 1 6], after applying your ...

6 years ago | 1 answer | 0

1

answer

Question


I need to iterate through a vector, A, using a while loop. Although, I must replace every negative element with 0 until I reach an element with value 0 or checked all elements in the vector.
I also must use either for or while to solve the problem. Also I am given an example: A=[1 -2 3 -5 4 0 9], then the scripts wi...

6 years ago | 1 answer | 0

1

answer

Question


I need to iterate through a vector, A, using a for loop, and create a new vector, B, containing logical values. The new vector should contain true for odd values and false for all other values.
I have to use either for or while to solve this problem and I have been working on it for about a while now and cant seem to fig...

6 years ago | 1 answer | 0

1

answer

Question


How would I write a script to solve this problem. Assume that I have a vector named D. Using iteration (for) and conditionals (if and/or switch), separate vector D into four vectors posEven, negEven, posOdd, and negOdd.
***Find the maximum, minimum elements and get the summation and so on, but how would I solve the problem using conditional state...

6 years ago | 1 answer | 0

1

answer