Borrar filtros
Borrar filtros

create the output folder based on the excel value

2 visualizaciones (últimos 30 días)
PA
PA el 28 de Jun. de 2023
Respondida: Jacob Mathew el 28 de Jun. de 2023
I Want to create the output folder based on the values of the parameter as there are 4X4 values i need to have 16 output folder.

Respuestas (1)

Jacob Mathew
Jacob Mathew el 28 de Jun. de 2023
Hi PA,
You can create a folder using the mkdir function:
folder_name = "folder";
mkdir(folder_name);
Now all that is needed is to fetch the data from the excel sheet. This can be done using functions like readtable function or you can also use the GUI Import data from Home > Import Data and then opening the Excel Sheet over there.
Once you load the matrix data, convert it from a 4x4 matrix to a 1x16 vector using the reshape method. Then all thats left to be done is to loop over the vector and create a folder with name corresponding to the value at the vector index:
folder_matrix; % this you have imported from the excel sheet as a 4x4 matrix. Make sure its string
folder_vector = reshape(folder_matrix,[1,16]);
for i = 1:numel(folder_vector)
mkdir(folder_vector(i));
end

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by