Statistics
2 Questions
0 Answers
RANK
75,970
of 301,432
REPUTATION
0
CONTRIBUTIONS
2 Questions
0 Answers
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
0
RANK
of 21,280
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,540
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
Feeds
Question
A 1x20 array of random number between 1 and 6 is % generated with the given code. Use a "while" loop sum certain numbers in the array until the % sum is greater than 15; however: a) if the random numbe
clear all; disp('#2'); y=1+round(6*rand(1,20)); fprintf('\n') % your code goes here sumy=0 ...
7 years ago | 0 answers | 0
0
answersQuestion
Use a "while" loop to create the vector x = [4 16 28 40]. Note the constant increment of 12.How can i put the ic values in x.Help please
clear all; disp('#1'); x=zeros(1,4); format compact % your code goes here ic=4 while ic<40 ...
7 years ago | 1 answer | 0
