Addition of Rectangular Coordinates?

2 次查看(过去 30 天)
Matt Amador
Matt Amador 2017-11-9
回答: KSSV 2017-11-9
Hello there. I'm trying to make a function to calculate two vectors defined in rectangular coordinates, add them, and save them as rectangular coordinates as well. This is what I've made, and it isn't working to how I want it. Can anyone help out?
function [out1] = VADD(a, b, c, d, j)
[x] = a + j*b;
[y] = c + j*d;
out1 = (a+c) + j*(b+d)
disp(out1)
end

回答(1 个)

KSSV
KSSV 2017-11-9
function out1 = VADD(a, b, c, d, j)
x = a + j*b;
y = c + j*d;
out1 = (a+c) + j*(b+d)
disp(out1)
end

类别

Help CenterFile Exchange 中查找有关 Computational Geometry 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by