Getting Started with MATLAB App Designer: Common Components (Part 2)

Getting Started with MATLAB App Designer: Common Components (Part 2)

This section introduces 19 commonly used components in MATLAB App Designer, including buttons, labels, axes, edit fields, radio button groups, toggle button groups, dropdowns, list boxes, checkboxes, trees, tables, sliders, spinners, state buttons, date pickers, text areas, images, hyperlinks, and HTML. 01 Radio Button Group The radio button group is a container for managing a … Read more

Introduction to Matlab App Designer: Common Components (Part 1)

Introduction to Matlab App Designer: Common Components (Part 1)

This article introduces 19 commonly used components in MATLAB App Designer, including buttons, labels, axes, edit fields, radio button groups, toggle button groups, dropdowns, list boxes, checkboxes, trees, tables, sliders, spinners, state buttons, date pickers, text areas, images, hyperlinks, and HTML. There are a total of 21 commonly used components in MATLAB App Designer. Table … Read more

Packaging MATLAB GUI as Executable EXE Files

Packaging MATLAB GUI as Executable EXE Files

A reader asked how to package a MATLAB GUI into an executable EXE file, so I am sharing the method. The current MATLAB GUI uses files ending with .mlapp, rather than the old .fig based format. 1. Enter deploytool in the command window and press Enter, then select the first option. 2. Select the .mlapp … Read more

Rust 2020 Development Vision: Embracing GUI

Rust 2020 Development Vision: Embracing GUI

The Rust core development team released a call for papers last month on their blog aimed at the Rust community, hoping to gather thoughts and suggestions on how Rust should develop in 2020. They stated that team members would read all submissions and subsequently produce a “Roadmap RFC” to form a formal proposal. Any ideas … Read more

Using PyInstaller to Package Python Programs

Using PyInstaller to Package Python Programs

Using PyInstaller to Package Python Programs! Hello everyone, it’s Guoguo again! Today, I want to introduce you to a particularly useful tool – PyInstaller. Have you ever thought about packaging your Python program into an executable file (.exe) so that friends who don’t have Python installed can run it? PyInstaller is here to help you … Read more

How MATLAB Helped Me Regain My Confidence

How MATLAB Helped Me Regain My Confidence

The winter in Germany is particularly hard to endure. Unlike in my home country, where nights and days are similar, in Germany, winter days and nights feel the same—cold, dark, and windy. It’s impossible to take the little one out to play. Being stuck at home with a child is incredibly frustrating; friends without kids … Read more

Enhancements in HaoCurve: Image Manipulation and More

Enhancements in HaoCurve: Image Manipulation and More

The HaoCurve tool has been developed for 6 years, and its user base is growing. Every year, many friends provide various suggestions for HaoCurve, leading to an annual increase in the codebase, which has now become so large that it causes lag even when wrapping lines. This isn’t a major problem; the most troublesome part … Read more

Building a Logic Analyzer Using FPGA

Building a Logic Analyzer Using FPGA

Previously, we introduced how to create a logic analyzer and oscilloscope using RP2040. Today, we will build a logic analyzer using FPGA. Currently, the mainstream architecture of logic analyzers in China is based on FPGA + USB PHY. The combination of the advantages of FPGA and the high accessibility of USB has kept it in … Read more

Why Windows/iOS Run Smoothly While Linux/Android Lag

Why Windows/iOS Run Smoothly While Linux/Android Lag

Click ▲ to follow “CU Technology Community” and pin it to the top of your public account More exciting content delivered at the first time Author: dog250 Link:https://blog.csdn.net/dog250/article/details/96362789 First, let’s see if it’s true, then ask why. I know someone will say this, but that would make it an argumentative essay, and I just want … Read more

Rust High-Performance Cross-Platform GUI Framework

Rust High-Performance Cross-Platform GUI Framework

Creating beautiful and responsive user interfaces in Rust has always been a challenge until the emergence of egui. egui is an immediate mode GUI library that has become a favorite in the Rust community due to its ease of use and cross-platform capabilities. Today, we will delve into the design philosophy, core features, and integration … Read more