mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2025-12-05 19:17:28 -06:00
Compare commits
2 Commits
1d9610e1bb
...
5913a659f9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5913a659f9 | ||
|
|
d0b0fa6fe4 |
@@ -83,13 +83,6 @@
|
||||
"profile": "https://github.com/shanzehbatool",
|
||||
"contributions": []
|
||||
},
|
||||
{
|
||||
"login": "eliasab16",
|
||||
"name": "Elias",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/eliasab16",
|
||||
"profile": "https://github.com/eliasab16",
|
||||
"contributions": []
|
||||
},
|
||||
{
|
||||
"login": "didier-durand",
|
||||
"name": "Didier Durand",
|
||||
@@ -97,6 +90,13 @@
|
||||
"profile": "https://github.com/didier-durand",
|
||||
"contributions": []
|
||||
},
|
||||
{
|
||||
"login": "eliasab16",
|
||||
"name": "Elias",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/eliasab16",
|
||||
"profile": "https://github.com/eliasab16",
|
||||
"contributions": []
|
||||
},
|
||||
{
|
||||
"login": "JaredP94",
|
||||
"name": "Jared Ping",
|
||||
|
||||
@@ -227,8 +227,8 @@ Thanks goes to these wonderful people who have contributed to making this resour
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/shanzehbatool"><img src="https://avatars.githubusercontent.com/shanzehbatool?s=100" width="100px;" alt="shanzehbatool"/><br /><sub><b>shanzehbatool</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/eliasab16"><img src="https://avatars.githubusercontent.com/eliasab16?s=100" width="100px;" alt="Elias"/><br /><sub><b>Elias</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/didier-durand"><img src="https://avatars.githubusercontent.com/didier-durand?s=100" width="100px;" alt="Didier Durand"/><br /><sub><b>Didier Durand</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/eliasab16"><img src="https://avatars.githubusercontent.com/eliasab16?s=100" width="100px;" alt="Elias"/><br /><sub><b>Elias</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/JaredP94"><img src="https://avatars.githubusercontent.com/JaredP94?s=100" width="100px;" alt="Jared Ping"/><br /><sub><b>Jared Ping</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/ishapira1"><img src="https://avatars.githubusercontent.com/ishapira1?s=100" width="100px;" alt="Itai Shapira"/><br /><sub><b>Itai Shapira</b></sub></a><br /></td>
|
||||
</tr>
|
||||
|
||||
@@ -145,8 +145,8 @@ A comprehensive list of all GitHub contributors is available below, reflecting t
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/shanzehbatool"><img src="https://avatars.githubusercontent.com/shanzehbatool?s=100" width="100px;" alt="shanzehbatool"/><br /><sub><b>shanzehbatool</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/eliasab16"><img src="https://avatars.githubusercontent.com/eliasab16?s=100" width="100px;" alt="Elias"/><br /><sub><b>Elias</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/didier-durand"><img src="https://avatars.githubusercontent.com/didier-durand?s=100" width="100px;" alt="Didier Durand"/><br /><sub><b>Didier Durand</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/eliasab16"><img src="https://avatars.githubusercontent.com/eliasab16?s=100" width="100px;" alt="Elias"/><br /><sub><b>Elias</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/JaredP94"><img src="https://avatars.githubusercontent.com/JaredP94?s=100" width="100px;" alt="Jared Ping"/><br /><sub><b>Jared Ping</b></sub></a><br /></td>
|
||||
<td align="center" valign="top" width="20%"><a href="https://github.com/ishapira1"><img src="https://avatars.githubusercontent.com/ishapira1?s=100" width="100px;" alt="Itai Shapira"/><br /><sub><b>Itai Shapira</b></sub></a><br /></td>
|
||||
</tr>
|
||||
|
||||
@@ -379,9 +379,9 @@ def welch_max_hold(fx, sampling_freq, nfft, n_overlap):
|
||||
Applying the above function to 3 signals:
|
||||
|
||||
``` python
|
||||
fax,Pax = welch_max_hold(accX, fs, FFT_Lenght, 0)
|
||||
fay,Pay = welch_max_hold(accY, fs, FFT_Lenght, 0)
|
||||
faz,Paz = welch_max_hold(accZ, fs, FFT_Lenght, 0)
|
||||
fax,Pax = welch_max_hold(accX, fs, FFT_Length, 0)
|
||||
fay,Pay = welch_max_hold(accY, fs, FFT_Length, 0)
|
||||
faz,Paz = welch_max_hold(accZ, fs, FFT_Length, 0)
|
||||
specs = [Pax, Pay, Paz ]
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user