Borrar filtros
Borrar filtros

How to create an array with user inputs?

28 visualizaciones (últimos 30 días)
Soeun Lee
Soeun Lee el 5 de Ag. de 2021
Respondida: d bhaskar el 24 de Feb. de 2023
Hello, I am trying to create an array with user inputs. For example, if the user types 3, 5, 7, the array comes out to be [3,5,7]. How can I do this? Thanks in advance for your help!

Respuestas (2)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 5 de Ag. de 2021
You can consider using input() prompt. See this doc with examples: https://www.mathworks.com/help/matlab/ref/input.html?s_tid=srchtitle
  1 comentario
Soeun Lee
Soeun Lee el 5 de Ag. de 2021
Thanks for your answer. I am using the input() prompt, but the only problem is I don't know how to put the user inputs into an array. Any ideas?

Iniciar sesión para comentar.


d bhaskar
d bhaskar el 24 de Feb. de 2023
clc
clear all
n=2; m=2;
for i=1:n
for j=1:m
fprintf('Enter a(%d,%d)=',i,j);
a(i,j)=input('');
end
end

Categorías

Más información sobre Programming Utilities en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by