How can I replace the rand function to real values and how can I change the shape of the drawing resulting from the code
1 回表示 (過去 30 日間)
古いコメントを表示
Generate Random Load Data
numMonths = 12;
numDays = 365;
numHours = 24;
loadData = rand(numHours, numDays, numMonths
0 件のコメント
回答 (1 件)
the cyclist
2023 年 12 月 12 日
It would be better if you gave a more complete description of what you want. Here is a guess:
% Generate Random Load Data
numMonths = 12;
numDays = 365;
numHours = 24;
loadData = [randi(numHours) randi(numDays) randi(numMonths)]
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!