Electrical
Relationships of DC line voltage, three-phase 6-step wave output, SPWM output and SVPWM output.
Relationships of DC line voltage, three-phase 6-step wave output, SPWM output and SVPWM output. Assuming `$$V_\mathrm{dc}$$` is DC voltage.
Relationships of DC line voltage, three-phase 6-step wave output, SPWM output and SVPWM output. Assuming `$$V_\mathrm{dc}$$` is DC voltage.
If you are using Simulink Embedded Coder, you will find that multiple subfolders are generated in the project directory. These subfolders contain automatically generated code, such as .c and .h, but also contain many temporary Read more…
The setting of Windows Remote Management (WinRM) is quite confusing. After some hard work, I finally set this function successfully. The following is the configuration process, I hope it helps. Server side start winrm service Read more…
On windows, there’s a tree command to display the directory structure of a path or of the disk in a drive graphically. For convenience, I wrote a right-click menu. Whenever I need to get the Read more…
Based on the References, I modified the code collected by ChunMinChang, and added the blankLineRemover function for combining multiple blank lines into single empty line. This py code is useful for processing the codes generated Read more…
Simulink is a powerful simulating and programming tool. In many applications, we need to write scripts to automate specific tasks. At this time, we often need to obtain or modify the parameter values of the Read more…
In Matlab programming, the for loop is a frequently used statement for iterating on arrays. When the array is very large, the execution time of for-loop may be considerably long, and we often expect to Read more…
The containers.Map of Matlab can create a data structure (or object) that maps values to unique keys. This function is very useful for storing key-value pairs and doing lookup of keys. Syntax M = containers.Map(keySet,valueSet) Read more…
Today I wanna share the javascript code I used in this website for auto hiding and auto showing the sticky header menu. This code is more robust than other existing methods. The robust auto hide, Read more…