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

답변 (1개)

the cyclist
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)]
loadData = 1×3
23 160 8

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by