Simple Input/Output Program in MATLAB Last Updated : 20 Aug, 2020 Comments Improve Suggest changes Like Article Like Report Let us see how to input and output data in MATLAB. input() Syntax : input(PROMPT, "s") Parameters : PROMPT : text prompted "s" : optional, to input a string Returns : the data entered The input() function is used to input data in MATLAB. Example : MATLAB % entering an integer input("Enter an integer : ") % entering a string input("Enter a string : ", "s") Output : Enter an integer : 10 ans = 10 Enter a string : GeeksforGeeks ans = GeeksforGeeks display() Syntax : display(OBJ) Parameters : OBJ : the object to be displayed Returns : Nothing The display() function is used to output data in MATLAB. Example : MATLAB % output a string display("GeeksforGeeks") % output a variable var = 10; display(var) Output : GeeksforGeeks var = 10 Create Quiz Comment S sk7004019618 Follow 0 Improve S sk7004019618 Follow 0 Improve Article Tags : GBlog MATLAB Explore How To BecomeHow to become a Java Developer? 6 min read How to Become a GenAI Developer 8 min read How to become a Cloud Network Engineer? 11 min read How to Become a DevSecOps Engineer 9 min read How to become an Automation Tester? 11 min read RoadmapFull Stack Developer Roadmap 11 min read Complete DevOps Roadmap - Beginner to Advanced 8 min read Machine Learning Roadmap 8 min read Data Analyst Roadmap 1 min read Interview PreparationInterview Preparation Roadmap 5 min read Top Interview Problems Asked in 2024 (Topic Wise) 2 min read Top HR Interview Questions and Answers (2025) 15+ min read Database Administrator Interview Questions 14 min read Aptitude Questions and Answers 3 min read Project Ideas10 Best Computer Science Projects Ideas for Final Year Students 9 min read Top 10 Mini Project Ideas For Computer Science Students 7 min read 30+ Web Development Projects with Source Code [2025] 4 min read Top 10 Data Science Project Ideas for Beginners 13 min read Java Project Ideas For Beginners and Advanced 15+ min read 10 Best Linux Project Ideas For Beginners 7 min read Top 7 Python Project Ideas for Beginners in 2025 6 min read CertificationTop Machine Learning Certifications in 2025 9 min read DevOps Certification - A Way to Enhance Growth Opportunities 4 min read Top 10 Highest Paying Certifications 11 min read Tech Certifications: Worth the Effort in 2025? 9 min read Like