How to: Plot a Function in Python

  Рет қаралды 126,986

HagesLab

HagesLab

Күн бұрын

Пікірлер: 36
@simone9740
@simone9740 3 жыл бұрын
THAAAAAAAAAANK YOU so much =D I've been looking for such a straight and simple tutorial for so long!
@iriisnes
@iriisnes 2 жыл бұрын
Excellent content. Subscribed. Commenting for the algorithms.
@tarehjernetarehjerne4082
@tarehjernetarehjerne4082 2 жыл бұрын
Hey, thanks a lot for showing this, very clear and easy to follow. Liked
@JasonAsemota-gw8lv
@JasonAsemota-gw8lv Ай бұрын
What is he using to code it?
@zjason7582
@zjason7582 Жыл бұрын
Awesome! Thanks for the clear guide of how to use this matplotlib tool!
@k-xxy8308
@k-xxy8308 2 жыл бұрын
Thank you so much!! Needed to do something similar for an assignment, this really helped!!
@maramarsu8204
@maramarsu8204 2 жыл бұрын
You could be a KZbin hit if you had more material like this. It can be around the similar topics. I enjoined watchin many of your videos even if its close to the same topic. You are great teacher. I have watched many Python youtubers and you one of the best. Pls consider starting making consistent videos weekly so the KZbin algorithm will pick you up
@mashedpotato9628
@mashedpotato9628 2 жыл бұрын
Please include in your title "Spyder". It will help in the search! :)
@TuExklusiv
@TuExklusiv 2 ай бұрын
Very good video!
@shinyshadow1
@shinyshadow1 3 жыл бұрын
awesome. straight, easy, clear -> perfect!
@limboski696
@limboski696 Жыл бұрын
Having programmed in Python for some time, I found the video confusing because python does not normally perform math operations on an entire list of floats which is what is done in function f here. And, this program would not work if you manually defined xlist with something like xlist = [-10.0, -9.9, ...., 9.9, 10.0]. However, using numpy to create the list does not create a list of floats but instead a class 'numpy.ndarray' object. Python then understands math operations like xlist **2.
@prestonphillips8373
@prestonphillips8373 3 жыл бұрын
What code editor are you using?
@PinhoDeng
@PinhoDeng 2 жыл бұрын
He is using Spyder. It is a programming platform designed to be used by scientists.
@anubhavrajyan7963
@anubhavrajyan7963 2 жыл бұрын
Worth watching
@coryreedrobbins
@coryreedrobbins 3 жыл бұрын
these math ones are important... algorithms, plotting, more, please...
@chewchengkai2769
@chewchengkai2769 3 жыл бұрын
how about if dont know about values of a,b,c and need input ourself, then how to plot the graph
@RakeshKumar-he6ek
@RakeshKumar-he6ek 2 жыл бұрын
very useful for beginner, thank you;
@pratyushpro9060
@pratyushpro9060 3 жыл бұрын
what is that code editor?
@mariapontonglang6658
@mariapontonglang6658 3 жыл бұрын
Thank you!!!
@rafy-ivanmorales3077
@rafy-ivanmorales3077 2 жыл бұрын
I’m a new student and need help to do this project: I have a port scanner script it works properly, it works in Pycharm using python3.9. I have to make a file and I did make call (Example.txt) On this file, I have to do this: 3. If the Ports is open, it should create a file and add an entry for port number 4. In case of any exception for instance “host is not available”, “host name could not be resolved” or due to any other error, you need to write that exception into the same file. I’m not asking for you to do the project for me, I'm only asking ware I need to work or used in my script to accomplish this because it is my first time doing this and working with python too, and I have been struggling with this part one very bad. I can even send you the code, so you can look and only tell me what I’m doing bad, is not working.
@VictorRégis-k4v
@VictorRégis-k4v 9 ай бұрын
thanks a lot !
@annahari610
@annahari610 2 жыл бұрын
how to plot a hyperbola and ellipse
@flexer7822
@flexer7822 3 жыл бұрын
you show how to plot a particular function, but i want to plot any function, how i solve that? for example: '2*x**2 + x'
@sayanjitb
@sayanjitb 3 жыл бұрын
how can I plot this one: [X^(2) - (Y+ (X - Y^(2/3))^(2))=0] ? Because I can not seperate here X and Y values.
@aritryapaul6449
@aritryapaul6449 2 жыл бұрын
its a multivariable function.so you need to define this as a function and plot this in 3d.the 3d plot is different from 2d plot.
@elmo45
@elmo45 Жыл бұрын
I am using VSCODE as my IDE. I could not get the plot window to show up, unless I added plt.show() to thee end of your code. I enjoyed your video, but I wanted to know more about which function outputs the graph, and whether or not this issue is IDE specific (spyder vs vscode)
@robertocaesar
@robertocaesar 3 жыл бұрын
I know you have good content. But you must know that your video is unwatchable in a Cellphone. Which cut a great deal of watchers that get this on the fly. :-(
@shibushil4164
@shibushil4164 2 жыл бұрын
You should zoom in the coding part..cant see properly,
@arpitakundu7847
@arpitakundu7847 8 ай бұрын
Can you please use light mode?
@spass526
@spass526 3 жыл бұрын
Thanks for the video. But it's too small.
@najeebzakariya2346
@najeebzakariya2346 2 жыл бұрын
Thank you very much for this Mister.
@nirmithjainresearchassista849
@nirmithjainresearchassista849 Жыл бұрын
thanks a lot
@junaid2773
@junaid2773 2 жыл бұрын
Very helpful!
@cristianortiz3349
@cristianortiz3349 3 жыл бұрын
Very good
@oumaimajanouj6309
@oumaimajanouj6309 3 жыл бұрын
Great video. But i have a question , when i run my script i can see the plot bit when i save it as an image , there is just white in that image, any idea why??
@andreaprado112
@andreaprado112 Жыл бұрын
Thank you so much!!!!! You saved me!!!❤ subscribed 🥹
Python Tutorial for Beginners #13 - Plotting Graphs in Python (matplotlib)
19:13
How to: Import, Plot, Fit, and Integrate Data in Python
24:11
Самое неинтересное видео
00:32
Miracle
Рет қаралды 2,9 МЛН
哈莉奎因怎么变骷髅了#小丑 #shorts
00:19
好人小丑
Рет қаралды 52 МЛН
WORLD BEST MAGIC SECRETS
00:50
MasomkaMagic
Рет қаралды 52 МЛН
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 163 М.
How to: Numerical Derivative in Python
10:45
HagesLab
Рет қаралды 23 М.
Intro to Plotting with Python
5:49
Jacob Koehler
Рет қаралды 70 М.
Derivatives In PYTHON (Symbolic AND Numeric)
17:37
Mr. P Solver
Рет қаралды 49 М.
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 308 М.
Matplotlib Tutorial (Part 1): Creating and Customizing Our First Plots
35:01
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 864 М.
NumPy Tutorial (2022): For Physicists, Engineers, and Mathematicians
1:32:42