フィルターのクリア

How to convert sequence of numbers into text and display on screen

2 ビュー (過去 30 日間)
Cai Chin
Cai Chin 2020 年 8 月 22 日
コメント済み: Cai Chin 2020 年 8 月 22 日
I am using MATLAB R2020a Psychtoolbox on Mac OS. I am trying to display sequences of numbers generated from a random Gaussian distribution and have tried 'num2str' and 'char' functions but these haven't worked. These are the sequences. The 'dis' function generates the numbers.
% Define sequences
seq1 = dis(20, 10, 100, 0, 5);
seq2 = dis(10, 10, 100, 0, 5);
seq3 = dis(10, 10, 100, 0, 5);
% dis function
function x = dis(va, mu, ul, ll, nvals)
n = makedist('normal','mu',mu,'sigma',sqrt(va));
t = truncate(n,ll,ul);
x = round(random(t,nvals,1));
end
  7 件のコメント
Adam Danz
Adam Danz 2020 年 8 月 22 日
編集済み: Adam Danz 2020 年 8 月 22 日
To add space between the numbers,
sprintf('%.4f ', rand(1,5))
Another approach, although much less efficient,
str = num2str(rand(1,5));
strSpace = regexprep(str, ' +', ' ')
Cai Chin
Cai Chin 2020 年 8 月 22 日
Thanks, that worked perfectly. In Psychtoolbox, when you enter the script name into the command window, the screen becomes blank and the background changes to a specified colour. I was then displaying sequences of numbers in a virtual triangle, each number separated by a space.

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeTiming and presenting 2D and 3D stimuli についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by