Тёмный

Solving Equations Symbolically And Using LaTeX In Python! 

Andrew Dotson
Подписаться 245 тыс.
Просмотров 69 тыс.
50% 1

There are some nice ways to pretty up your codes in python. I use Jupyter Notebook along with libraries like sympy to output equations from my codes in LaTeX format. Keeping things in variable form in addition to passing numerical values to functions is a nice way to keep tabs on what your code is doing.

Опубликовано:

 

23 май 2018

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 57   
@bernsbuenaobra473
@bernsbuenaobra473 5 лет назад
Finally real how to's LaTeX into Anaconda nice to use in explaining algorithms in line and then implementing them in Phyton. Thank you very much Andrew Dotson
@jbl4174
@jbl4174 6 лет назад
shift+enter to run cells
@davidsweeney111
@davidsweeney111 6 лет назад
This is what we want! Big thumbs up! Great stuff Andy!
@thomasblackwell9507
@thomasblackwell9507 3 года назад
Great video! Very useful! Please continue with this line of videos!
@danielsears1522
@danielsears1522 5 лет назад
Good video, but you don't need to "declare" your function with "func = sp.Function('func')". "func = sp.sin(x)" is sufficient. For example, import sympy as sp x = sp.symbols('x', real=True) func = sp.Function('func') print(type(func)) func = sp.sin(x) print(type(func)) func = "stuff" print(type(func)) sin "func = sp.Function('func')" creates a variable called func referring to an object of type UndefinedFunction. "func = sp.sin(x)" overwrites this variable reference and creates an object of type "sin". Finally, func = "stuff" overwrites this reference again and creates a string.
@drover7476
@drover7476 3 года назад
You Andrew, are a top shagger. My physics grades this year thank you in advance
@sciencestararvinsinghk
@sciencestararvinsinghk 6 лет назад
If you're doing physics, try to the vector module in dumpy. Also mpmath is good for changing how precise your values are
@DrIlyas-sq7pz
@DrIlyas-sq7pz 4 года назад
Thank you sir. We use markdown to write an equation by latex mode. But is there some way to do other mathematical stuff in python like evaluation etc using latex mode ? I faced a big problem writing subscripts when there are many, even with split_super_sub module. This problem can be circumvented by using latex kind of command.
@paranoidcomet
@paranoidcomet 3 года назад
Thanks! This really helped a lot. The output kinda looks weird in Spyder but it's still comprehensible.
@tehyonglip9203
@tehyonglip9203 3 года назад
if you're using np.power(a,b) just replace it to sp.Pow(a,b). Unfortunately, sp.power(a,b) will not work, the function is slightly different.
@mther123
@mther123 5 лет назад
you are great
@_Nibi
@_Nibi 6 лет назад
I used to do sympy, and I don't see the need to define a function f(x). I used to do it in spyder, and I would just define my symbols, then say f = some equation, then do sp.integrate(f, ('variable I'm integrating', 'lower bound', 'upper bound').eval()
@_Nibi
@_Nibi 6 лет назад
As you can see in your code, you defined it but didn’t even use it?
@abdelhamidalbaid5276
@abdelhamidalbaid5276 Год назад
Thank you for the Vedio. I was wondering if we can solve an equation written in Latex code without going back to python code. For example is it possible for python in Jupyter notebook to identify x^2 same as x**2
@KillGui007
@KillGui007 6 лет назад
Will simpy not lower your computation speed? I would expect this to be the case but have not used it enough to be sure
@navjotsingh2251
@navjotsingh2251 4 года назад
I’ve not noticed any slower speed impacts whilst using it.
@indescribablecardinal6571
@indescribablecardinal6571 3 месяца назад
Just import the necessary objects, in that case
@sayanjitb
@sayanjitb 3 года назад
Can please someone say what is the RawNBconvert option there in jupyter notebook?
@kisho2679
@kisho2679 6 месяцев назад
would be helpful if jupyter notebook could live render LaTex so that you instantaneously could see what you are typing (and not wait to finish the markdown scripting before seeing the mathematical expression)
@virtualpeyman
@virtualpeyman 4 года назад
Can you also solve DAE systems with SymPy?
@alaasleem2149
@alaasleem2149 3 года назад
Please i want to help with single degree linear eq how to solve(solce(eq, x) ) it with sympy.. I tried but it takes laege time
@wesleyblack8302
@wesleyblack8302 2 года назад
Can you use python to display the latex format on Android I know I've seen apps like Wolfram alpha and symbolab and have a way to display it on apps
@mennowitteveen3313
@mennowitteveen3313 4 года назад
Could you upload the notebook perhaps?
@shivajishinde1496
@shivajishinde1496 5 лет назад
This is an excellent job!! I tried applying $$ z=\dfrac{2x}{3y} $$ but it did not work and giving error "invalid syntax". Can you please help me in this?
@trewq398
@trewq398 5 лет назад
i have the same problem with spyder. Now i have to find out how to do it there....
@djmonky4994
@djmonky4994 6 лет назад
Why's this man so perfect
@umaoio312
@umaoio312 6 лет назад
Perfection is unrealistic But he's nice
@fizixx
@fizixx 4 года назад
In order for me to get this to work (to the point up to 3:45) I needed to include: "from IPython.core.display import display"
@sddbakirova1838
@sddbakirova1838 5 лет назад
do you know, guys, how to display equations with latex on tkinter??? HELLLP!!
@edwinarleyhenaovergara6009
@edwinarleyhenaovergara6009 4 года назад
i am looking for the same thing;do you know something about this now?
@hugosanchezchinesta9989
@hugosanchezchinesta9989 4 года назад
Same! Did yoy guys find a solution or something??
@adamfattal468
@adamfattal468 3 года назад
It’s been a year since you asked this question so you’re probably a tkinter master now. I have a project I’m working on and could use a tkinter expert. If you’re interested, you can shoot me an email at programmer3.7@outlook.com
@kisho2679
@kisho2679 6 месяцев назад
what are Anaconda alternatives?
@GLPentAxel
@GLPentAxel 6 лет назад
Have you done any Matlab?
@SurajBorate-bx6hv
@SurajBorate-bx6hv 2 года назад
Cool but how to do the other way around long latex equations to python code
@duvanm2483
@duvanm2483 5 лет назад
How do you install Latex in python?
@michelleliew7341
@michelleliew7341 4 года назад
You may install Pylatex for creating.tex file.
@umaoio312
@umaoio312 6 лет назад
I started understanding a little about how python coding works but you lost me when you started talking in LaTeX xD I'll have to take computer science and learn to code at some point, just a matter of time now Maybe I can add this to my list of summer things 👍🏾
@umaoio312
@umaoio312 5 лет назад
I finally started learning to code in python: 7 months later 👍🏾
@dylutante
@dylutante 5 лет назад
@@umaoio312 You might like to take a look at scipy lectures, here: www.scipy-lectures.org/ . Those helped me a lot. Section for bare-bones beginners isn't much, but the overview of numpy, scipy and plotting modules helped me so much it's not even funny.
@StarbaseX-co4mv
@StarbaseX-co4mv 2 года назад
Why don’t you try VSCode. It has built in support for Jupyter, can debug step in/over, show variables etc
@faleru
@faleru Год назад
How is print used like a statement instead as a function? Is this Python2?
@gabrielavendano4821
@gabrielavendano4821 6 лет назад
Did you learn to code in uni or did you know how to before?
@AndrewDotsonvideos
@AndrewDotsonvideos 6 лет назад
I learned during my first internship.
@KillGui007
@KillGui007 6 лет назад
If you kill the kernel you will not have this problem with integration to k...
@David-bo7zj
@David-bo7zj 3 года назад
esc + m + m to make a markdown cell
@siddhantpathak3162
@siddhantpathak3162 3 года назад
or just press '1' :)
@crosisbh1451
@crosisbh1451 6 лет назад
could you try some vpython?
@magnesiumdrip
@magnesiumdrip 6 лет назад
can you do a video on resumes?
@umaoio312
@umaoio312 6 лет назад
There are actually a lot of videos you can watch for resume help, (quite a few that I've seen recently myself) but if it's really specific to a certain field, especially if that field is physics or math, I think asking Andrew is your best bet
@basalduat
@basalduat 5 лет назад
Andrew, you are doing a very good job here. HOWEVER! Your "talking head" is TOO BIG. Reduce it or get rid of it. Your "talking head" is distracting. Also your text is TOO small. Make the text as large as possible. Most of us have poor eyesight and view your good work on cheap laptops. Good luck to you. Please keep sharing your excellent skills with Jupyter.
@AndrewDotsonvideos
@AndrewDotsonvideos 5 лет назад
Timothy Basaldua I appreciate the feedback!
@sciencestararvinsinghk
@sciencestararvinsinghk 6 лет назад
So you took my advice and used sympy
@brianholloway7468
@brianholloway7468 3 года назад
Thank you. I really enjoy your videos, however every time I see Python I say to myself "wow Matlab is really awesome!". It seems more intuitive. pi is just pi, no shorthand abbreviations needed. exponents ^ look like normal exponents vs **. I know Python is free, I just can't bring myself to get thru the py veil.
@AbarajithanGnaneswaran
@AbarajithanGnaneswaran 3 года назад
For me, python is a lot more intuitive than Matlab. If u hate the abbreviations like np, sp and want it matlab style, u can simply say "from numpy import * ". Then u can directly say pi, exp, sin...etc. But those abbreviations are a feature, not a bug. They are namespaces used to seperate different packages used for different purposes. It's super weird to have everything in one namespace, like matlab (or from numpy import *) Matlab, i need to keep the docs open and read them for 15 mins before applying some new function. There's zero consistency. No objects, everything in same namespace, stateful programs, god I hate it... I think it was built in a time where no other way was there to do it. And scientific people hated learning programming properly. So, matlab just gave them a bunch of functions they can use. Say they made a function for a 2d vector. Now they want the same thing for a 3d vector. So they slapped *3d behind the functions name and created a new function. Doing the same with numpy is a bliss. You guess like "this might work" and type a new syntax (like a[a[...,5]>5] ) and it works. It's so intuitive. Numpy extends python's design philosophy. I'm in love with that API. We were given an assignment on signal estimation, not that hard. A transmitter sends some signals (a bit vector) to the receiver. That gets corrupted by gaussian noise. We need to create a bunch of estimators and guess what was sent. It's all on matlab. Need to repeat the experiment changing vector size (N), signal vocabulary....etc. like 4,5 parameters. Friends ended up doing it with a nested for loop 5 steps deep in matlab. For every parameter, for every other parameter. Because matlab natively supports only 2d arrays. And most functions work only on 2d arrays. I decided to do this in numpy. In numpy, i created a 6 dimensional tensor (6d array), with each parameter on each dimension. I added noise and stuff to different dimensions using broadcasting, crunched certain dimensions and like 20 lines later i have a 2D array that I can plot using matplotlib to get the performance of estimator changing with vector size and all. It was a breeze. And it's fast even when u increase repetitions of experiment to a million or something. The whole thing is readable as well... It's elegant.
Далее
Monte Carlo Integration In Python For Noobs
15:32
Просмотров 149 тыс.
아이들은 못말려 〰️ With #짱구
00:11
Просмотров 478 тыс.
Lessons Learned During My PhD So Far
13:05
Просмотров 151 тыс.
3 Bad Python Habits To Avoid
10:40
Просмотров 48 тыс.
SymPy is REVOLUTIONARY For Mathematical Tasks
25:15
Просмотров 67 тыс.
How I make beautiful GRAPHS and PLOTS using LaTeX
28:46
The Double Pendulum in PYTHON
23:03
Просмотров 30 тыс.
How I use Python in Structural Engineering
17:27
Просмотров 45 тыс.
PyTorch in 100 Seconds
2:43
Просмотров 860 тыс.