Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Socket to stream data and tranmit and revieve data
Post: Socket to stream data and tranmit and revieve data

Hi, I want to be able to send and receive data between a host and client and stream a video from one computer to another computer outside my network (ie over the internet). I have already used socket...
kiyoshi7 Networking 0 2,369 Aug-11-2022, 10:52 PM
    Thread: python audio analysis
Post: RE: python audio analysis

(Feb-22-2022, 02:11 AM)Larz60+ Wrote: There is one package that I have never used, but can be trained to recognize sound. You will have to investigate and experiment package is called keras-ding The...
kiyoshi7 General Coding Help 3 1,764 Feb-22-2022, 12:52 PM
    Thread: python audio analysis
Post: python audio analysis

Hi, I have a small project where I have a mechanical clock and I record it ticking (pic below) and I would like to be able to identify the tick first just to find the average time between tics and ave...
kiyoshi7 General Coding Help 3 1,764 Feb-21-2022, 11:53 PM
    Thread: Embed Python console in GUI application
Post: RE: Embed Python console in GUI application

hey, I want to thank you for this awesome code, I have been banging my head on how to embed a console in pyqt for a while now. I modified it to use pyqt5, changed 1 line of code other than the imports...
kiyoshi7 GUI 5 14,058 Jun-03-2021, 03:37 PM
    Thread: problem with sphinx and file directory in script
Post: problem with sphinx and file directory in script

Hi, I am trying to use sphinx to document some of my code but I'm having problems getting my files directories. I dont want to write down the full path of the script. when I run my script in the termi...
kiyoshi7 General Coding Help 0 2,285 Mar-11-2021, 03:52 PM
    Thread: plotting 2d and 3d using pyqt5 and pyqtgraph and GLSurfacePlotItem
Post: RE: plotting 2d and 3d using pyqt5 and pyqtgraph a...

never mind, I solved it class MainWindow(QtWidgets.QMainWindow): def __init__(self, *args, **kwargs): super(MainWindow, self).__init__(*args, **kwargs) #Load the UI Page ...
kiyoshi7 GUI 1 7,744 Jan-20-2020, 12:13 AM
    Thread: plotting 2d and 3d using pyqt5 and pyqtgraph and GLSurfacePlotItem
Post: plotting 2d and 3d using pyqt5 and pyqtgraph and G...

Hi, I am trying to plot two graphs in one window, one 2d and another 3d. I am able to get the 2d plot to work but when I try to plot in 3d using GLSurfacePlotItem I get the following error: Error:Attr...
kiyoshi7 GUI 1 7,744 Jan-19-2020, 04:20 PM
    Thread: help with multiprocess concept
Post: RE: help with multiprocess concept

thanks, but I'm not planning on using tkinter( i kind of hated using it) i'm sticking to just text based commands and a python script. also plotting may or may not be done, since it would have to depe...
kiyoshi7 General Coding Help 2 2,474 Aug-10-2019, 08:19 PM
    Thread: help with multiprocess concept
Post: help with multiprocess concept

Hi im trying to write a module that communicates with a ucontroller via pyserial, plots data if needed. The general outline of what I want to do is in this Image.. but I`m having a hard time understan...
kiyoshi7 General Coding Help 2 2,474 Aug-09-2019, 07:02 PM
    Thread: odeint to solve Schrodinger equation
Post: RE: odeint to solve Schrodinger equation

I don't think solve_ivp is going to go forward. I am plotting graphs with it but there are two problems 1 its not symmetric and 2 the first derivative of the function is not continuous.
kiyoshi7 Data Science 14 12,249 Nov-23-2018, 11:49 AM
    Thread: odeint to solve Schrodinger equation
Post: RE: odeint to solve Schrodinger equation

thanks, I'll update my code according to yours. I'm still trying to figure out how to change the solution, for some reason I'm trying to develop the code using solve_ivp and solve_bvp at the same time...
kiyoshi7 Data Science 14 12,249 Nov-22-2018, 04:29 PM
    Thread: odeint to solve Schrodinger equation
Post: RE: odeint to solve Schrodinger equation

the condition was something I hastily added to be able to plot the potential function on multiple figures without getting doubles. I almost got the new code to work it runs and finds energy, though i...
kiyoshi7 Data Science 14 12,249 Nov-21-2018, 07:45 PM
    Thread: odeint to solve Schrodinger equation
Post: RE: odeint to solve Schrodinger equation

ya, i'm reading into it. I seems that I got past making solve_ivp, and I removed all but one global, E. now Im trying to get find all zeros to work, I may have to rewrite it, but Im getting an error I...
kiyoshi7 Data Science 14 12,249 Nov-20-2018, 12:55 AM
    Thread: odeint to solve Schrodinger equation
Post: RE: odeint to solve Schrodinger equation

I'm currently trying to swap odeint out for scipy.integrate.solve_ivp because on odeint's page it says this: Quote:Note For new code, use scipy.integrate.solve_ivp to solve a differential equation. ...
kiyoshi7 Data Science 14 12,249 Nov-20-2018, 12:12 AM
    Thread: odeint to solve Schrodinger equation
Post: RE: odeint to solve Schrodinger equation

I think I answered all of the questions in the code V() would work better as a closure or class method Needs a more descriptive name; what is V? Vector? Velocity? V is the potential function for the ...
kiyoshi7 Data Science 14 12,249 Nov-16-2018, 11:48 PM
    Thread: odeint to solve Schrodinger equation
Post: RE: odeint to solve Schrodinger equation

thanks, I'll try to answer everything, I sould be able to since I did the math by hand. I also asked here, though it concerns it's more concerned with the method used and not code debugging.
kiyoshi7 Data Science 14 12,249 Nov-16-2018, 04:24 PM
    Thread: odeint to solve Schrodinger equation
Post: RE: odeint to solve Schrodinger equation

the function find_analytic_energies(en) finds the correct values, the list E_zeroes (populated in line 109) should contain the same values, problem is that I need the function Wave function to work fo...
kiyoshi7 Data Science 14 12,249 Nov-16-2018, 03:01 AM
    Thread: odeint to solve Schrodinger equation
Post: odeint to solve Schrodinger equation

Hi, Im trying to solve the Schrodinger equation. I am basing myself on this site but in altering the code odeint is giving me the wrong results. the functions find_all_zeroes(x,y) and find_analytic_en...
kiyoshi7 Data Science 14 12,249 Nov-15-2018, 07:15 PM
    Thread: python odeint keeps giving me size of array error
Post: python odeint keeps giving me size of array error

hi I'm trying to run the following code to solve Schrodinger equation in a infinite well with a barrier in themiddle but when I try to run the code I keep getting this error: Error:Traceback (most rec...
kiyoshi7 Data Science 1 6,138 Nov-01-2018, 01:49 AM
    Thread: pyrtlsdr and matplotlib's psd
Post: pyrtlsdr and matplotlib's psd

Hi, I'm trying to read data and integrate the results for a given bandwidth, something that I thought was going to be easy. the problem is that I cannot control the badwidth. this is the code I am ru...
kiyoshi7 General Coding Help 0 2,282 Sep-22-2018, 01:27 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020