Looping Through Matrix indexing
2 次查看(过去 30 天)
显示 更早的评论
I'm trying to solve an equation with multiple values for two variables. I can't seem to get the inner matrix to work which is variable Pc...
clear all, clc;
Mc = [120.2 119.9 119.9 119.9 119.7 119.8 119.6 119.3 119.1]; Pc = [121.4 121.4 121.3 121.2 121.5 121.7 121.6 121.8 121.5];
Vc = Mc(:)*cosd(Pc(:)) + Mc(:)*sind(Pc(:))*i
0 个评论
采纳的回答
Ced
2014-10-22
Hi Since you want to compute Vc for each element, you need to use element-wise operations, meaning you have to add a dot "." in front of the operator as such:
Vc = Mc.*cosd(Pc) + Mc.*sind(Pc)*i
Cheers
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!