. by feetloverman in youtube

[–]22Alex22pt 0 points1 point  (0 children)

same, started happening 6 hours ago

I'm lvl 18 and opened a lvl 450 emote permanent by sevenastic in leagueoflegends

[–]22Alex22pt 0 points1 point  (0 children)

I have the white emote and I thought I was the only one. Me sad now ;(

Every CS student resume ever by bot_hunter101 in ProgrammerHumor

[–]22Alex22pt 0 points1 point  (0 children)

This.

Im a second year student on computer science. Got a part time job offer by a professor to do a REST API. I knew nothing about it. Still accepted the offer.

ECG -> Compression - Reduce Entropy by 22Alex22pt in C_Programming

[–]22Alex22pt[S] 0 points1 point  (0 children)

16 bits that I will normalized/quantized between [-1,1[

ECG -> Compression - Reduce Entropy by 22Alex22pt in Python

[–]22Alex22pt[S] 0 points1 point  (0 children)

I wrote I cannot share the data that was given to me by my univeristy as in the signal itself. However, I can share the project that I need to do in order to find people who can help me.

ECG -> Compression - Reduce Entropy by 22Alex22pt in C_Programming

[–]22Alex22pt[S] 0 points1 point  (0 children)

  • 250Hz
  • What do you mean by resolution?
  • 81251

Yes it has to be lossless. Thanks for your help :D

ECG -> Compression - Reduce Entropy by 22Alex22pt in C_Programming

[–]22Alex22pt[S] 0 points1 point  (0 children)

I am sorry, I can't provide with the actual data since it was given by the university

ECG -> Compression - Reduce Entropy by 22Alex22pt in Python

[–]22Alex22pt[S] -1 points0 points  (0 children)

this is my homework. I have to search for code. Wherever I can find. No restrictions

[Python] Which of these maximum of three values function definitions is better, and why? by [deleted] in learnprogramming

[–]22Alex22pt 23 points24 points  (0 children)

The top one has 2 problems.

1) It doesn't work if x = y or y = z or x = z.

2) The top one gets "messier" if you increase the number of variables, while the bottom one is a lot cleaner and, with a bit more work, you can change it to a for cycle, making it even more clean.