Solution to IF statement please :)

1 view (last 30 days)
Hey all,
The basic start of my program i'm trying to write is to take user input of note values and create a wav file based upon these values but I'm having problems with parsing the user input and converting it to the particular frequency of that note..
Here is my code so far:
% SHOW INPUT DIALOG AND TAKE USER INPUT..
prompt={'1st Note','2nd Note','3rd Note','4th Note','5th Note','6th Note','7th Note'};
name='Enter Note Values (C-B)..';
num_lines=1;
%list = {'B'};
%options.Interpreter = 'tex';
defaultans={'C','D','E','F','G','A','B'};
answer=inputdlg(prompt,name,[1 50],defaultans);
% TEST IF USER FORGETS AN INPUT..
for x = 1:length(answer)
tf=isempty(answer);
if tf==1
msgbox('You missed a note(s) out..','Error','error','modal');
end
% END IF..
end
% END FOR..
% CONFIGURE INPUT TO VARIABLES..
Note1 = answer{1};
Note2 = answer{2};
Note3 = answer{3};
Note4 = answer{4};
Note5 = answer{5};
Note6 = answer{6};
Note7 = answer{7};
% LOOP THROUGH ANSWERS AND ASSIGN FREQUENCY VALUES..
for x = 1:length(answer)
if answer{x} == 'C'
FreqX = num2str(261.626);
elseif answer{x} == 'D'
FreqX = num2str(293.665);
elseif answer{x} == 'E'
FreqX = num2str(329.628);
elseif answer{x} == 'F'
FreqX = num2str(349.228);
elseif answer{x} == 'G'
FreqX = num2str(391.995);
elseif answer{x} == 'A'
FreqX = num2str(440.000);
elseif answer{x} == 'B'
FreqX = num2str(493.883);
end
% END IF..
end
% END FOR..
msgbox({'Freq1 is: ', FreqX, 'Hz' 'Note1 is: ', Note1});
msgbox({'Freq2 is: ', FreqX, 'Hz' 'Note2 is: ', Note2});
Now although there are no errors, its working as intended. The msgboxes are simple to help me see the results as i build my program but the frequency it displays is always the final one in the if statement.
I could do if statements for EACH of the answer{} array but this would be a lot of code so what would be the best way to iterate through the answers and assign the correct frequency values..
I can't get my head around the best and easiest way..
Any ideas?
Thanks,
Paul

Accepted Answer

Stephen23
Stephen23 on 14 Nov 2015
Edited: Stephen23 on 14 Nov 2015
Note that you should not use numbered variables, as this invariably leads beginners to dynamic variable naming, which is a very poor programming practice. Instead you should note that these numbers are essentially indices, in which case actually make them real indices. Read this to know why numbered variables are a bad idea:
And this to know why dynamically naming variable is an even worse idea:
Also using if's and loops is slow and inefficient: MATLAB works best when you learn how to write vectorized code, and to not use loops to solve every little task. Try this:
prompt={'1st Note','2nd Note','3rd Note','4th Note','5th Note','6th Note','7th Note'};
name='Enter Note Values (C-B)..';
defaultans={'C','D','E','F','G','A','B'};
answer=inputdlg(prompt,name,[1,50],defaultans);
% These three lines replace all of your loop and elseif statements:
V = 'CDEFGAB';
idx = cellfun(@(c)find(V==c),answer);
frq = [261.626,293.665,329.628,349.228,391.995,440.000,493.883];
out = frq(idx)
  5 Comments
Edmund Paul Malinowski
Edmund Paul Malinowski on 18 Nov 2015
Hey Stephen,
Sorry to bother you again. I now have an actual GUIDE GUI designed with 7 edit text boxes rather than just the original inputdlg. Is there a way i can still use the code you suggested for this? Do i just make the input from these edit boxes answer{1}, answer{2} etc?
Edmund Paul Malinowski
Edmund Paul Malinowski on 18 Nov 2015
Don't worry, I've sussed it :) i used:
answer{1} = get(handles.edit1note,'String');
answer{2} = get(handles.edit2note,'String');
answer{3} = get(handles.edit3note,'String');
answer{4} = get(handles.edit4note,'String');
answer{5} = get(handles.edit5note,'String');
answer{6} = get(handles.edit6note,'String');
answer{7} = get(handles.edit7note,'String');
Although this probably could be shortened somehow but i'm happy with it as it is. I can always refine it if i get time before the hand-in deadline :)

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!