MATLAB problem notes

1. Operating system: Linux mint 19.2 2.MATLAB version R2017b 3. Problem Description: Open the help document of MATLAB and view it. After closing the help document, Matlab is stuck. After a period of time, it will report: Exception in thread "AWT-EventQueue-0" com.teamdev.jxbrowser.chromium.internal.ipc.IPCException: Failed to execute shutdo ...

Posted by filippe on Sun, 15 Dec 2019 06:35:40 -0800

The basis of matplotlib -- the use of pyplot

I. Basic Concepts (composition) matplotlib consists of three layers: scripting, artist and backend In the whole matplotlib, all the elements that can be seen in the graph belong to Artist object, that is, all the elements composed of title, axis label, scale, etc. are instances of Artist object (1) if Artist is compared to dr ...

Posted by arsitek on Wed, 11 Dec 2019 01:15:39 -0800

c + + Foundation (6): matlab time conversion, ascii to char and time format conversion

Let the output start and end time, did not expect that matlab is output like this, feel egg pain incomparably in an instant 5.0000000e+01 4.8000000e+01 4.9000000e+01 5.6000000e+01 4.5000000e+01 4.9000000e+01 5.0000000e+01 4.5000000e+01 5.0000000e+01 4.8000000e+01 3.2000000e+01 4.9000000e+01 5.7000000e+01 ...

Posted by Anidazen on Sat, 07 Dec 2019 00:23:01 -0800

The basic operations of Python numpy are not common to you

The text and pictures of this article are from the Internet, only for learning and communication, not for any commercial purpose. The copyright belongs to the original author. If you have any questions, please contact us in time for handling.   PS: if you need the latest Python learning materials, you can click the link below to get the ...

Posted by eric1235711 on Thu, 28 Nov 2019 05:50:18 -0800

MATLAB implementation of Wu Enda's machine learning regularized Logistic regression algorithm

plotData.m file This function file is to distinguish the results of which the results are 0 and 1, mainly through the find function. function plotData(X, y) %PLOTDATA Plots the data points X and y into a new figure % PLOTDATA(x,y) plots the data points with + for the positive examples % and o for the negative examples. X ...

Posted by vikela on Thu, 21 Nov 2019 10:22:38 -0800

How to generate csv file with picture path and coordinate by python

In the object detection of deep learning, we need a CSV file to store the file of our training set picture and the position coordinates of the corresponding object's boundingbox in the picture. Today I'll teach you how to generate python code for CSV. First, you need to generate the GT graph of training ...

Posted by NZ_Kiwis on Fri, 01 Nov 2019 02:58:13 -0700

matlab program of Latin hypercube sampling method (LHS), including normal distribution, lognormal distribution, etc.

For LHS introduction, please refer to: https://blog.csdn.net/Together_CZ/article/details/90076271 The following are four kinds of distribution matlab programs, including normal distribution, uniform distribution, lognormal distribution, extreme type 1. 1. Latin hypercube sampling of normal (Gaus ...

Posted by misslilbit02 on Thu, 31 Oct 2019 12:48:42 -0700

UFLDL New Edition Tutorial and Programming Exercises: Vectorization

UFLDL is an early in-depth learning introduction written by Wu Enda's team. The rhythm of theory and practice is very good. Every time I want to read the theory quickly and write the exercises, because he helps you to complete the whole code framework and has detailed annotations, so we just need to imp ...

Posted by s_dhumal on Tue, 06 Aug 2019 02:50:52 -0700

LADRC Learning: General Survey

Author: Moxin; Date: 2019.7.25; Learning LADRC structure: 1. Learning the relevant knowledge of PID, as the basis for learning ADRC, building modules in simulink, through adjusting parameters, to see the effect of adjusting, analyze the impact of Kp, Ki, Kd parameters on the system. 2. Introduce some ...

Posted by aarons123 on Thu, 25 Jul 2019 02:18:45 -0700

Speech Recognition-Zero Crossing Rate and Short-term Energy-Endpoint Detection

Endpoint detection Endpoint Detection Algorithmic Steps of Energy and Zero Crossing Number Speech signal x(n) subframe processing Calculate the short-time energy of each frame, and get the short-time frame energy of speech. Calculate the zero-crossing number of each frame and get the zero-crossing ...

Posted by sectachrome on Wed, 24 Jul 2019 04:00:38 -0700