how do you ask matlab for a random word from dictionary?

조회 수: 7 (최근 30일)
zoom
zoom 2019년 5월 2일
답변: KSSV 2019년 5월 2일
randWord=randi(length(dictionary));
i tried using the code above and it gives me number instead of a word from the dictionary

채택된 답변

KSSV
KSSV 2019년 5월 2일
idx=randperm(length(dictionary),1);
randword = dictionary{idx}

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sources에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by