About 26,200 results
Open links in new tab
  1. input - Request user input - MATLAB - MathWorks

    This MATLAB function displays the text in prompt and waits for the user to input a value and press the Return key.

  2. Mastering The Input Function in Matlab: A Quick Guide

    Master the input function in MATLAB with our concise guide. Discover simple techniques to capture user input effortlessly and enhance your coding skills.

  3. Understanding the Input Function in Matlab: Comprehensive Guide …

    Dec 7, 2023 · This guide provides an in-depth look at the input function in MATLAB, its syntax, parameters, return types and best practices. Gain insights on how to use this function for user …

  4. input (MATLAB Functions) - Northwestern University

    The response to the input prompt can be any MATLAB expression, which is evaluated using the variables in the current workspace. user_entry = input ('prompt') displays prompt as a prompt on the …

  5. Matlab Code - Input - University of Utah

    The input function allows you to ask a user to type some sort of information into the program and to save that information into a variable that the program can process. The input function is used to ask the …

  6. Function with Multiple Inputs in a Script File in MATLAB

    Apr 28, 2025 · In this article, we will see a function with multiple inputs in a script file in MATLAB. The steps below can be used to build a function with multiple inputs in a MATLAB script file: Launch a …

  7. input (MATLAB Function Reference) - Mathematics

    displays prompt as a prompt on the screen, waits for input from the keyboard, and returns the value entered in user_entry. user_entry = input('prompt','s') returns the entered string as a text variable …

  8. Input-Output & Plotting – MATLAB Programming for Engineering …

    The simplest way to request information from the user of a MATLAB program is with the function, input (). This function displays a prompt to the command window asking the user to enter a value and …

  9. function - Declare function name, inputs, and outputs - MATLAB

    This MATLAB function declares a function named myfun that accepts inputs x1,...,xM and returns outputs y1,...,yN.

  10. How to Ask for Input in MATLAB: An Expert‘s Guide - TheLinuxCode

    Dec 27, 2023 · Expression input turns input() into a versatile calculator – users can visualize various math functions on demand! While very simple, input() handles many common cases like numbers, …