フィルターのクリア

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 件のコメント
John wick
John wick 2019 年 8 月 25 日
I mean if its were you what command would you use and adjust it to make it look more short and easy to understand. Do I need to use horzcat command? Am I supposed to use loop function to make it looks better?
dpb
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
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
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.
John wick
John wick 2019 年 8 月 27 日
I did it similar to yours thanks to your help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHistorical Contests についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by