Generate random matrix ‘r’ of size 3 by 4 with number varying between -4 and 6

조회 수: 1 (최근 30일)
Q

채택된 답변

KSSV
KSSV 2016년 10월 1일
a = -4;
b = 6;
r = (b-a).*rand(3,4) + a;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by