random selection for .csvfile

1 visualización (últimos 30 días)
James Webber
James Webber el 1 de En. de 2022
Respondida: KSSV el 1 de En. de 2022
i have 4 .csvfiles imported into my code like this
Choice1= readtable ('computerchoice1.csv');
Choice2= readtable ('computerchoice2.csv');
Choice3= readtable ('computerchoice3.csv');
Choice4= readtable ('computerchoice4.csv');
how do i wirte code for it to randomly select one of them and to use with the rest of the code

Respuesta aceptada

KSSV
KSSV el 1 de En. de 2022
csvFiles = dir('*.csv');
N = length(csvFiles) ;
idx = randi(N,1) ;
csvFile = csvFiles(idx).name ;
T = readtable (csvFile);

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by