Silly question about 2 column matrix
显示 更早的评论
It is my understanding that
a = [1 3 5; 2 4 6; 7 8 10]
yet
AL01-SIGMA09 = [1183.885678 512.1;
568.8329716 512.1;
417.7853247 512.1;
200.7327245 512.1;
38.95699064 512.1;
19.83313269 512.1;
14.56665171 512.1;
8.010756815 512.1]
gives me this error, I can't see the difference. Can someone explain how I create a two column matrix from this data.
Thanks in advance
Alex
采纳的回答
更多回答(1 个)
From the below error, its visible that AL01 & SIGMA09 are both scalar variables and difference between them is also scalar. They have different dimensions when compared with matrix present in RHS & not possible to equate them
AL01 = 3;
SIGMA09 = 2;
AL01-SIGMA09 = [1183.885678 512.1;
568.8329716 512.1;
417.7853247 512.1;
200.7327245 512.1;
38.95699064 512.1;
19.83313269 512.1;
14.56665171 512.1;
8.010756815 512.1]
类别
在 帮助中心 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!