How Do I add user input to a matrix already defined in my work space?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How do I add user input to a matrix already defined in my work space?
Matrix in work space is a 16x1 and Im trying to be able to add user input on whatever day they chose to the matrix to be able to update with new day they are asking for.
Respuestas (1)
Prabhan Purwar
el 19 de Sept. de 2019
Following code illustrates the updation of data matrix based on user input
clc
close all
clear
%Defining a 16*1 random matrix
mat=rand(16,1);
%assuning 1 to 16 represents days
%User defined input
day=input('Enter day');
value=input('Enter value');
%Update value
mat(day)=value;
Please refer the following link for further information
0 comentarios
Ver también
Categorías
Más información sobre Logical 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!