Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Anyone know how I can improve my code and create the following equation? I only have the signal and image toolboxes

1 回表示 (過去 30 日間)
Timothy Nsubuga
Timothy Nsubuga 2019 年 6 月 22 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
%*************************************************************************
%%This fucntion will store transducer coordinates and differences of
%%arrival times between each transducer and transducer 1
% which are aquired via graphData() and store them in the 2D
%%non-linear function
%**************************************************************************
function equation(xti,yti,zti,deltai,v)%known values are input parameters
b = ?;
a = (xti - xs)^2;
b = (yti - ys)^2;
c = (zti - zs)^2;
d =(ts - deltai);
e = a + b + c;
f = sqrt(e);
g = f/v;
i = g - d;
end
  5 件のコメント
Timothy Nsubuga
Timothy Nsubuga 2019 年 6 月 22 日
Then I can't create this equation without the toolbox?

回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by