求教!!!在matlab中怎么使用input输入输入一个行向量

2024年11月17日 03:29
有1个网友回答
网友(1):

想输入什么样的行向量?字符型的还是数值型的?
最简单的:
clear all;clc;
a=input('please input your number:');
please input your number:[1 2 3 4 5 6]
>> a
a =
1 2 3 4 5 6