Making a script file that creates random vectors and include comment at top describing what the file does.
조회 수: 1 (최근 30일)
이전 댓글 표시
This is the code I got should anything be adjust and what does it means by include a comment?
a = rand(1,6)
b = rand(1,6)
c = rand(1,6)
d = rand(1,6)
e = rand(1,6)
f = rand(1,6)
fprintf('%s\t',a,b,c,d,e,f)
댓글 수: 5
dpb
2019년 8월 25일
I can't say what you're "supposed to do"; I'm not the instructor nor have I been in the class so I don't know what topics have been covered nor what particular topics were presented just prior to the given assignment. You'll have to judge for yourself from what you've been introduced to so far.
Again which command to use is your call; I don't want to unduly influence your answers by doing much more than making suggestions, but yes, you do need to create a variable that holds the full vector in one fashion or another to meet the second requirement of the assignment.
I was simply saying that one could use a loop and an array instead of the explicitly-named variables and a more experienced MATLAB-er would almost certainly do so if there got to be more than just a couple of instances.
If you have been introduced to looping, then I think I would recommend you investigate how you might do that--if you haven't actually covered the topic yet, then "not so much!".
채택된 답변
Image Analyst
2019년 8월 25일
Hint:
To concatenate two row vectors into another, single vector, do
output = [rowVector1, rowVector2];
It will be easy for you to adapt this to your code to use 6 vectors instead of 2 (like I did).
댓글 수: 3
Image Analyst
2019년 8월 27일
Did you try what I said? Here it is for 4 of them. If you can't figure out how to do it for all 6 after this, then I guess you'll just have to miss it
% This script does blah blah blah
a = rand(1,6)
b = rand(1,6)
c = rand(1,6)
d = rand(1,6)
e = rand(1,6)
f = rand(1,6)
fprintf('%.1f,\t',a,b,c,d,e,f)
output = [a, b, c, d]; % Add e and f to get all 6.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!