Vector Equation with scalars?

4 次查看(过去 30 天)
Ian
Ian 2014-2-3
回答: Amit 2014-2-3
Define a and b as scalars a = 3 and b = 4, and x as the vector x = −3,−2.8,−2.6,··· ,1.6,1.8,2. Then use these variables to calculate y by y = 8((a^2)/(x^2 + b^2)) .

采纳的回答

Amit
Amit 2014-2-3
a = 3;
b = 4;
x = -3:0.2:2;
y = 8*(a^2)./(x.^2+b^2);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Numerical Integration and Differential Equations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by