Generate a 15-by-2 matrix q with random numbers
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
someone please help me with these solutions
a)Generate a 15-by-2 matrix q with random numbers b) create a 15-by-1 vector of sequential natural numbers from 1to 15 and name it X c)Plot using X and the first column of the matrix q(as Y): d)on the same chat plot using X and the second column of matrix q (as y)
2. Calculate the mean fo reach row of q b) calculate the standard deviation for each column of q
0 commentaires
Réponses (1)
KALYAN ACHARJYA
le 3 Oct 2018
Modifié(e) : KALYAN ACHARJYA
le 3 Oct 2018
a)
p=100*rand(15,2);
--------------------------------------------------------------------------
b) Find X Try yourself, first do the creat 15 by 1 and modify it for 1 to 15 number, you can fix the min and max limit value.
-------------------------------------------------------------------
c) Plot read the 1 column of p by q(:,1) and 2nd colm q(:,2) and plot the required (as per question)
---------------------------------------------------------------------
Hope this help you,
Learning by doing is the best way, try it, if you will find any difficulty share here, we are here to help you.
Good Wishes..!
6 commentaires
Steven Lord
le 3 Oct 2018
The std function does not accept values of an integer type as input. It's unlikely that the standard deviation of an integer vector would itself be an integer value and so able to be stored exactly in a vector of an integer type.
Nothing in the statement of the assignment indicated that your q matrix had to be an int8 array. I would omit the int8 call in your code, which will make q a double array. The std function can compute the standard deviation of a double array.
If you need to generate random integer values, consider the randi function or calling round on the numbers generated by 100*rand. If you don't need to generate random integer values, just use 100*rand on its own.
About your x vector, it doesn't seem like it satisfies the requirements of the assignment. What you posted doesn't look "sequential" to me. I believe one of the examples on this page may be of use to you.
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!