How Do I add user input to a matrix already defined in my work space?
2 ビュー (過去 30 日間)
古いコメントを表示
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
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
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!