photo

mayur saraiya


Aktiv seit 2014

Followers: 0   Following: 0

Nachricht

Professional Interests: power engineering

Statistik

  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Question-1: Consider a set of N numbers, myArray, (represented as a row vector) which is not ordered. Write a function myStats which takes myArray and an integer k such that 1≤k≤N and returns the kth largest and kth smallest element in myArray. Your
Question-1: Consider a set of N numbers, myArray, (represented as a row vector) which is not ordered. Write a function myStats ...

mehr als 10 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Modify the function myStats (from question-1) and write myStats_2 so that the input argument k is optional. In case this argument is omitted, then the function myStats_2 returns the smallest and the largest element in the myArray. Write a script he
Modify the function myStats (from question-1) and write myStats_2 so that the input argument k is optional. In case this argume...

mehr als 10 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Let the array a be declared as a = [ 1, 2; 2, 3]. Consider the definition of another array d as, d = zeros(size(a)) + 2. What will be the values in d? Select one: a. [ 2, 0 ; 0 , 0] b. [ 2, 2 ; 2 , 2] c. [ 2, 2 ; 0 , 0] d. [ 2, 0 ; 2 , 0]
Let the array a be declared as a = [ 1, 2; 2, 3]. Consider the definition of another array d as, d = zeros(size(a)) + 2. What w...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


-Let the array a be declared as a = [ 1, 2; 2, 3; 1, 2; 2, 3]. The assignment statement a ( 2:3, 1:2)= 0 results in Select one: a. a = [ 0 0; 0 0; 0 0; 0 0] b. a = [ 1 0; 0 0; 1 0; 0 0] c. a = [ 1 2; 2 3; 1 2; 2 3] d. a = [ 1 2; 0 0; 0 0; 2 3]
-Let the array a be declared as a = [ 1, 2; 2, 3; 1, 2; 2, 3]. The assignment statement a ( 2:3, 1:2)= 0 results in Select...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Let the array a be declared as a = [ 1, 2; 2, 3; 1, 2; 2, 3]. The assignment statement a(4,4)=0 results in Select one: a. An error, illegal index. b. a = [ 1, 2; 2, 3; 1, 2; 2, 3, 0, 0]. c. a = [ 1, 2, 0, 0; 2, 3, 0, 0; 1, 2, 0, 0; 2, 3, 0, 0]. d. No
Let the array a be declared as a = [ 1, 2; 2, 3; 1, 2; 2, 3]. The assignment statement a(4,4)=0 results in Select one: ...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Let the array a be declared as a = [ 1, 2; 2, 3; 1, 2; 2, 3]. The assignment statement a(4:-1:1, 3:-1:1)=0 results in
Let the array a be declared as a = [ 1, 2; 2, 3; 1, 2; 2, 3] The assignment statement |a(4:-1:1,3:-1:1)=0| results in S...

mehr als 10 Jahre vor | 2 Antworten | 0

2

Antworten