使用 MATLAB,我需要编写一个脚本,使用input
. 然后它使用randperm
.
我有以下内容来获取用户名:
>>name = input('what is your name: ', 's');
% user types name
% At this point, the variable: name, will contain
% whatever value the user types (as a string of characters),
我不知道如何使用randperm
返回他们用户名的加扰版本。
谢谢您的帮助!