Can you please tell me how I can get multiple inputs from user in matlab? I thought of getting an array directly, but that doesn't seem to be possible. I tried the following
velocity = input('Enter the velocities you want the aircraft to have at every node with space in between(m/s)','s');
and later use delimiter to read the numbers between spaces. But even for that, am not sure how to use the inbuilt functions.
[u,remain] = strtok(velocity);
If there's no way to get multiple inputs directly, how can I put the above in a loop, so that I can read all the numbers? My apologies if the qustion is very rudimentary and your help will be much appreciated.