I need help with the input function
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I want to do one function that calls another function that is already done. The problem is that the function I want to use has something that print on the comman line to ask to insert values and strings via keyboard.
Is something like this: function Import()
disp('*****************************************************************'); disp('string');
SatLong = input('insert latitude ');
File = input('Insert name ', 's');
BFile = input('Name of converted file (no ext): ', 's');
How can I insert this fields in my function???
0 comentarios
Respuesta aceptada
Elad
el 1 de Jun. de 2012
you need that the other function will output those parameters ... [ File,BFile...]= otherfunction(....) and that the main function would also call them ... [ ....] = mainfunction(File,BFile... )
Más respuestas (0)
Ver también
Categorías
Más información sobre String en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!