How to divide a vector by a constant?
Ältere Kommentare anzeigen
c=3*10^8
speeds=(.1*c:.9*c/8:.9*c)
y=1/sqrt(1-(speeds.^2./c^2))
What is my error?
Akzeptierte Antwort
Weitere Antworten (1)
You need to use elementwise division everywhere in your equation for y
c=3*10^8;
speeds=(.1*c:.9*c/8:.9*c);
% v
y=1./sqrt(1-(speeds.^2./c^2))
1 Kommentar
Lance Shallenberger
am 16 Sep. 2021
Kategorien
Mehr zu Data Type Identification finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!