早教吧 育儿知识 作业答案 考试题库 百科 知识分享

matlab中赋值a、b分别是100乘1的列向量,怎么赋值给x(i),比如说要x(1)=a.如果直接相等的话会出现?InanassignmentA(I)=B,thenumberofelementsinBandImustbethesame.

题目详情
matlab中赋值
a、b分别是100乘1的列向量,怎么赋值给x(i),比如说要x(1)=a.如果直接相等的话会出现
? In an assignment A(I) = B, the number of elements in B and
I must be the same.
▼优质解答
答案和解析
写成 x(:,1)=a; 就可以了.
x(1)的话相当于是一个标量,而你的a是一个向量,所以就没法赋值了.