Here's a part of my code where I am entering a name of the .mat file, which is located in the same folder as my code. However it does not identify the file name and gives an error:
"??? Error using ==> load
Unable to read file 'q.mat': No such file or directory."
q_type=input('Do you want to use q from "A", "B" or from a saved .mat file? Enter the exact name: ','s');
q_type=mat2str([q_type'.mat'])
load(q_type)
However if I use the load command in the command window directly as follow, then it gives no error and loads the file:
load('q_A.mat')
Why is it doing like this?