Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
1427fe3
avg and mps speed formulae added
Baron105 Oct 10, 2023
0608c40
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 10, 2023
7457b25
avg and mps speed formulae added
Baron105 Oct 10, 2023
b1ef5a3
fixed_spacing
Baron105 Oct 10, 2023
c957bd7
.
Baron105 Oct 10, 2023
07502c8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 10, 2023
ead4f47
spacing
Baron105 Oct 10, 2023
c18b39d
.
Baron105 Oct 10, 2023
cb006c3
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 10, 2023
ab04734
ws
Baron105 Oct 10, 2023
69487f3
Merge branch 'master' of https://github.com/Baron105/Python
Baron105 Oct 10, 2023
6a741dc
added amicable numbers
Baron105 Oct 10, 2023
d13c09d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 10, 2023
18df9ba
Merge branch 'TheAlgorithms:master' into master
Baron105 Oct 10, 2023
63734b9
added amicable numbers
Baron105 Oct 10, 2023
aa5f176
descriptive
Baron105 Oct 10, 2023
9779c1a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 10, 2023
aa4d4e8
spacing
Baron105 Oct 10, 2023
7bb663f
Merge branch 'master' of https://github.com/Baron105/Python
Baron105 Oct 10, 2023
52c2cb8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 10, 2023
643958b
removed
Baron105 Oct 10, 2023
65f5851
Merge branch 'master' of https://github.com/Baron105/Python
Baron105 Oct 10, 2023
7f14ab9
Merge branch 'TheAlgorithms:master' into master
Baron105 Oct 12, 2023
c05ed7c
changed name of file and added code improvements
Baron105 Oct 12, 2023
886fb5d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 12, 2023
97b89cd
issues fixed due to pi
Baron105 Oct 12, 2023
a1c783a
Merge branch 'master' of https://github.com/Baron105/Python
Baron105 Oct 12, 2023
1c2b7b2
requested changes added
Baron105 Oct 12, 2023
5aa65b8
Merge branch 'TheAlgorithms:master' into master
Baron105 Oct 13, 2023
219d973
Merge branch 'TheAlgorithms:master' into doppler
Baron105 Oct 14, 2023
2052af0
Created doppler_effect_of_sound.py
Baron105 Oct 14, 2023
efe1055
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 14, 2023
03e3c0c
Updated doppler_effect_of_sound.py
Baron105 Oct 14, 2023
664095f
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 14, 2023
728a378
added desc names
Baron105 Oct 14, 2023
a56688b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 14, 2023
006761f
fixed spacing
Baron105 Oct 14, 2023
ba5a96b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 14, 2023
2a01a65
Merge branch 'TheAlgorithms:master' into doppler
Baron105 Oct 21, 2023
620b03f
renamed doppler_effect_of_sound.py to doppler_frequency.py
Baron105 Oct 21, 2023
8947a2a
used expection handling rather than print statements
Baron105 Oct 21, 2023
72988ae
fixed spacing for ruff
Baron105 Oct 21, 2023
36909a1
Update doppler_frequency.py
cclauss Oct 21, 2023
7a01a8a
Update perfect_number.py
cclauss Oct 21, 2023
f29ded9
Rename perceptron.py to perceptron.py.DISABLED
cclauss Oct 21, 2023
3e5172e
Merge branch 'master' into doppler
cclauss Oct 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated doppler_effect_of_sound.py
  • Loading branch information
Baron105 authored Oct 14, 2023
commit 03e3c0c97e03ec1f2f55a9f0da0f028987a9964f
2 changes: 0 additions & 2 deletions physics/doppler_effect_of_sound.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
in the medium, the velocity of the observer and the velocity of the source.
"""


def doppler_effect(f0: float, v: float, v0: float, vs: float) -> float:
"""
Input Parameters:
Expand Down Expand Up @@ -94,7 +93,6 @@ def doppler_effect(f0: float, v: float, v0: float, vs: float) -> float:
return None
return f


if __name__ == "__main__":
import doctest

Expand Down