MATLAB Onramp: 8.1 Obtaining help

조회 수: 19 (최근 30일)
Jigyasu Chand
Jigyasu Chand 2020년 5월 4일
답변: Yillak Gedamu 2022년 3월 28일
Hi folks!
I just started exploring MATLAB and I am stuck at the following place. In the course "MATLAB Onramp" which is one of the 'Getting Started' courses, I am not able to get the solution of '8. Obtaining help - Further Practice'. The task is to create a matrix that
  • Contains random integers in the range from 1 to 20,
  • Has 5 rows, and
  • Has 7 columns.
matrix with normally distributed numbers (instead of uniformly distributed numbers).
Please help on this one.
Thanks in advance!
-J

채택된 답변

Guillaume
Guillaume 2020년 5월 4일
I've just discovered that there are several versions of the Onramp course (R2018b, R2019a, and R2019b). The last two have slightly different presentation for the assignment (the first one doesn't seem to work properly) but in neither of them do I see that assignment under further practice. Which version are you using (look at the url)? Perhaps it is also language specific.
The assignment doesn't make sense and certainly won't be answered by the doc. You could rescale and recentre a normal distribution and possibly round it to integers but it still wouldn't be restricted to a range. And you could hardly call the result a normal distribution anymore.
You should report it as a bug to mathworks.
  댓글 수: 3
Guillaume
Guillaume 2020년 5월 4일
I should have read the further practice in more details. I didn't see that "Search the documentation to recreate the same matrix with normally distributed numbers (instead of uniformly distributed numbers)." It's new in the 2019b assignment.
I think it's poor wording, you're supposed to find a function that creates a normally distributed matrix with the same 5x7 dimensions. However, the integers in the range from 1 to 20 is not part of the new requirement.
Basically, they want you to find in the doc the function that creates normally distributed random numbers.
I'll raise a service request to get Mathworks to review the wording.
Jigyasu Chand
Jigyasu Chand 2020년 5월 8일
That seems fair. Thanks a lot!
-J

댓글을 달려면 로그인하십시오.

추가 답변 (3개)

Abubakr Eltayeb
Abubakr Eltayeb 2020년 8월 14일
x = randn([5 7])

Anand Gopal
Anand Gopal 2021년 1월 19일
x = randi([1,20],5,7)

Yillak Gedamu
Yillak Gedamu 2022년 3월 28일
x = randi(20,5,7)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by