NumPy Tutorial (2022): For Physicists, Engineers, and Mathematicians

NumPy Tutorial (2022): For Physicists, Engineers, and Mathematicians

Mr. P Solver

3 года назад

155,180 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@marounrizk
@marounrizk - 20.11.2023 06:28

So underrated, what a great channel ! Thank you from a physics engineering undergraduate.

Ответить
@csjfd1764
@csjfd1764 - 05.11.2023 18:15

Please, what is your PC configuration to use all this?

Ответить
@lecturesfromleeds614
@lecturesfromleeds614 - 22.10.2023 23:10

Brilliant presentation! You pretty much covered everything important for doing computational mathematics

Ответить
@ayoubbenhamou7815
@ayoubbenhamou7815 - 05.10.2023 20:09

np.sum(np.vectorize(lambda x: x if x % 4 != 0 and x % 7 != 0 else 0)(np.arange(0, 10000 + 1)))

Ответить
@anupkulkarni6986
@anupkulkarni6986 - 27.08.2023 22:03

Hey man ,you got one new subscriber 😊

Ответить
@danieleromeo7135
@danieleromeo7135 - 28.07.2023 00:33

you use the zeroes theorem

Ответить
@user-we6mf5bn4m
@user-we6mf5bn4m - 13.07.2023 18:22

This is Awesome !!
Science girls should be in looove

Ответить
@abhishekdodda5641
@abhishekdodda5641 - 13.07.2023 10:06

Marvelous

Ответить
@Than0sG
@Than0sG - 08.07.2023 20:23

Mr. P Solver, your videos have helped me a lot, but shouldn't the ODE of the simple pendulum in the thumbnail (d^2θ/dt^2 - sin(θ)*g/l = 0) have a plus (+) sign instead of a minus (-)? Thanks for the great video!

Ответить
@MasterOwen69
@MasterOwen69 - 06.07.2023 22:13

Man... This stuff is same as for machine learnig too? Or is there something new to learn?

Ответить
@ayushkumarsharma7019
@ayushkumarsharma7019 - 01.07.2023 22:57

Even after 2 years this is the most fun and informative video for numpy that i needed , really loved those exercises.
thank you for such an amazing content

Ответить
@nicoleworoniuk1544
@nicoleworoniuk1544 - 25.06.2023 23:44

This is the best channel I have come across for python, as an engineering student, I am so grateful! Thank you !!

Ответить
@Arthur-so2cd
@Arthur-so2cd - 15.06.2023 04:06

i thought of an alternative to question 1 item 5:
crit_points = np.array([])
mindydx = np.array([])
deltasdydx = np.array([])
for i in range(0, len(dydx)):
if i != 1000:
deltasdydx = np.append(deltasdydx, x[i+1]-x[i])
# print(deltasdydx)
mindydx = deltasdydx.min()
print(mindydx)

for i in dydx:
if i+0.009999999999999787>=0 and i<=0:
pontos_crits = np.append(crit_points, i)
print(crit_points)

you take the 3 minimum values of the final array and that's the y values you are looking for, i don't know how to get back the x value tho
also, that 0.00999 number is the minimum difference between 2 consecutive y values

Ответить
@kevinsweeney2809
@kevinsweeney2809 - 15.06.2023 00:39

Can you please make a video where you write code for a nudged elastic band calculation? You use nudged elastic band methods to calculate the structure and energy of transition state(s) for a reaction. The classic example for a nudged elastic band calculation is determining the structure and energy of the transition state for H2 splitting.

Ответить
@AluminiumT6
@AluminiumT6 - 27.05.2023 22:15

Completed today. Thanks for this great resource Luke!

Ответить
@subhamdutta6326
@subhamdutta6326 - 27.05.2023 09:08

While using the Ferrari's method for solving a quartic equation, it showed up with a very lengthy solution with both real and imaginary components. How can I separate the real and imaginary components from the final solution?

Ответить
@user-ql1im6ew7i
@user-ql1im6ew7i - 20.05.2023 19:40

Please continue making video

Ответить
@heirta21
@heirta21 - 05.05.2023 12:33

hello Mr. P Solver, I really love your videos but with regards to that multi-dimensional arrays, 3D animations would really help.

Ответить
@prietjepruck
@prietjepruck - 23.04.2023 21:02

Thanks for this great tutorial.

Ответить
@ignacionevarez3254
@ignacionevarez3254 - 22.04.2023 21:40

Man you should get your line of courses on udemy: just like neetcode is a much better option than algoexpert for algorithms/data structures or to learn unreal engine, Stephen Ulibarri's courses are much better than Ben Tristem's, you could easily beat Jose Portilla in Python +Machine learning

Ответить
@eu-cj3oj
@eu-cj3oj - 15.04.2023 21:15

In Question 3(tougher), how to know that meshgrid should have variables as (t, z) or (z, t)? Because this interchanges the plot for z=0 and t=0.. which one is correct way?

Ответить
@AishikDasgupta-pm5pl
@AishikDasgupta-pm5pl - 01.04.2023 21:59

Thanks a lot mate. Please keep posting. I find these videos tremendously helpful for my Computational Nano electronics course.

Ответить
@bensepter8500
@bensepter8500 - 27.03.2023 05:52

These videos are great, man.

Ответить
@gedavaa1
@gedavaa1 - 09.03.2023 09:48

Dear Mr. P Solver, I am very thankful for your Python tutorial videos. I have learnt much more things. Thank you again.

Ответить
@jowadulkader9006
@jowadulkader9006 - 15.02.2023 16:12

Thank you.

Ответить
@ErikS-
@ErikS- - 27.01.2023 13:52

better than most of the other video tutorials on numpy that I have seen...

Ответить
@Arkantosi
@Arkantosi - 11.01.2023 20:22

I never compliment people but...this dude is fantastic.

Ответить
@archniki7551
@archniki7551 - 23.12.2022 00:45

Can numpy help an artist?

Ответить
@joaovictorbalieirodasilva1430
@joaovictorbalieirodasilva1430 - 22.12.2022 22:47

please meke a video about numba

Ответить
@ishtvibhu
@ishtvibhu - 20.12.2022 05:57

Thanks

Ответить
@samuelnjau8086
@samuelnjau8086 - 15.12.2022 18:48

The illustration and speed is just amazing😎

Ответить
@attajilani
@attajilani - 29.11.2022 23:06

Impressive, wonderful python skills.

Ответить
@solounomas0
@solounomas0 - 28.11.2022 19:57

so useful

Ответить
@upgraduate
@upgraduate - 12.11.2022 00:30

Very good tutorial, thank you! I

Ответить
@R3nzoku
@R3nzoku - 04.11.2022 11:10

best tutorial

Ответить
@SubhadipDas1
@SubhadipDas1 - 31.10.2022 15:35

Your tutorial are very easy to learn yet very concise, informative and in-depth. Please keep making such contents.

Ответить
@Ligress
@Ligress - 28.10.2022 11:22

brilliant series, many people say that scientists use NumPy, scipy but you showed "HOW TO DO IT"

Ответить
@athalm8289
@athalm8289 - 15.10.2022 18:53

Thank you, Luke. Can you upload the meshgrids diagram , thanks!

Ответить
@JP-fm5lk
@JP-fm5lk - 10.10.2022 18:19

i dont understand why but i am unable to have the graph appear anymore without doing plt.show() and it is very tedious how do i do it as .plot() only?

Ответить
@AntonioLopez8888
@AntonioLopez8888 - 06.10.2022 17:19

Canada seems to be a country with very good education system

Ответить
@abishaimathai6542
@abishaimathai6542 - 03.10.2022 19:37

I hope the algorithm blesses you. Best tutorial for NumPy on the internet hands down.

Ответить