Write a getString() function that prompts the user for a string and returns it
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Khalid Khan
el 1 de Dic. de 2016
Comentada: Khalid Khan
el 1 de Dic. de 2016
Call getString() function to get the string from the user. I can't get the string from the function.
function getstring()
input('Enter A String: ','s');
end
0 comentarios
Respuesta aceptada
KSSV
el 1 de Dic. de 2016
function str = getstring()
str = input('Enter A String: ','s');
end
3 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!