redo part if script if not happy with the outcome

1 visualizzazione (ultimi 30 giorni)
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 Commenti
Dyuman Joshi
Dyuman Joshi il 24 Feb 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 il 24 Feb 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.

Accedi per commentare.

Risposta accettata

Ashu
Ashu il 24 Feb 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

Più risposte (0)

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by