How Do I add user input to a matrix already defined in my work space?

2 ビュー (過去 30 日間)
Cody Abt
Cody Abt 2019 年 9 月 15 日
回答済み: Prabhan Purwar 2019 年 9 月 19 日
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.

回答 (1 件)

Prabhan Purwar
Prabhan Purwar 2019 年 9 月 19 日
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

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by