Borrar filtros
Borrar filtros

redo part if script if not happy with the outcome

3 visualizaciones (últimos 30 días)
Lotte Piek
Lotte Piek el 24 de Feb. de 2023
Comentada: Lotte Piek el 27 de Feb. de 2023
Hi everyone,
I am doing some data filtering and made a script for it. I am now looking for a way to sort of say 'yes' to the outcome of the script if the outcome is good or redo the script if I the outcome is not good (maybe by using the input() function). Anybody has done this before and can help me out?
  2 comentarios
Dyuman Joshi
Dyuman Joshi el 24 de Feb. de 2023
It is difficult to give a clear answer as we don't know what you are trying to do. Please post relevant code and data, and ask/mention specifically what you want to do.
Rik
Rik el 24 de Feb. de 2023
I would strongly advise you to consider functions for anything non-trivial. Functions provide a stable interface that allow you to document the purpose along with expected inputs and outputs. That allows modular programming so you can reuse functions later without having to rewrite everything from scratch or copy-pasting code sections until they work.

Iniciar sesión para comentar.

Respuesta aceptada

Ashu
Ashu el 24 de Feb. de 2023
I understand that you want to make decisions in your code based on the output from a script. A general approach to achieve this is as follows:
% execute the data filtering script
outcome = data_filtering_script();
% User response
response = input('Was the outcome good? Enter ''yes'' or ''no'': ', 's');
% Make a decision on re-running the script.
if strcmpi(response, 'yes')
disp('You can proceed with the next steps.');
elseif strcmpi(response, 'no')
disp('Redo the script.');
% Call the script again
outcome = data_filtering_script();
else
disp('Invalid input.');
end

Más respuestas (0)

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by