Réponse apportée
how to run the two MATLAB files(scripts) in one script
Hi Aiman, As per my understanding, you want to combine two separate MATLAB scripts into a single script that runs them sequent...

plus d'un an il y a | 0

Réponse apportée
How calculate the class membership of each training sample using Fuzzy-kNN
Hi Merlin, As per my understanding, you are implementing the Fuzzy K-Nearest Neighbours (FKNN) algorithm to classify your data....

plus d'un an il y a | 0

| A accepté

Réponse apportée
How to conduct parallel modulations in Simulink?
Hi Pavel, Based on your question, it seems you want to simulate a circuit in Simulink using Simscape blocks, where a resistor'...

plus d'un an il y a | 0

Réponse apportée
Real time module TCP communication cannot receive the correct signal through the command line
Hi星河, It sounds like you're trying to convert a sequence of uint8 values received via TCP communication back into a double typ...

plus d'un an il y a | 0

Réponse apportée
C2000 Modbus RTU Slave
Hi Semih, As per my understanding, you are working on a project involving Modbus RTU communication in Simulink. Your goal is t...

plus d'un an il y a | 1

Réponse apportée
Is it possible to convert Arduino IDE Code (C++ Code) to MATLAB Code by any means? Or does it have to be done manually?
Hi Octavo, As per my understanding, you're looking to convert Arduino C++ code to MATLAB code for a soil moisture sensor and ra...

plus d'un an il y a | 0

Réponse apportée
how can i change the image contrast?
Hi Diogo, As per my understanding, you are looking to adjust the contrast of an image within a specific region of interest (ROI...

plus d'un an il y a | 0

Réponse apportée
LED lights maybe not detecting sound input (Arduino Uno board).
Hi Wyatt, As per my understanding, your sound-meter prototype is not providing the desired outputs and the microphone readings ...

plus d'un an il y a | 0

Réponse apportée
Running two independant background tasks on two cores
Hi Mitraz, To run two independent background tasks on separate cores in MATLAB, you can utilize the Parallel Computing Toolbox ...

plus d'un an il y a | 0

Réponse apportée
Testing a code written for an Aurix T3XX family
Hi Ahmad, I believe that you are looking to simulate the Infineon AURIX TC3x board in Simulink. It is possible to do so using t...

plus d'un an il y a | 0

Réponse apportée
How can I programmatically add tables in PowerPoint?
Hi Saria, It looks like there was a small misunderstanding regarding the use of the "Table" class. The "Table" class in "mlrepo...

plus d'un an il y a | 0

Réponse apportée
Wie kann man einen Speicher in Simulink erstellen?
Hi Mark, Ich werde die Anfrage auf Englisch beantworten. You can leverage several tools and techniques within Simulink. Stat...

plus d'un an il y a | 0

Réponse apportée
Using VR headset as an input to Simulink
Hi Oscar, To integrate a VR headset as a coordinate input device in your Simulink model, you can utilize the capabilities of S...

plus d'un an il y a | 0

| A accepté

Réponse apportée
The problem with the Anti-Windup algorithm.
Hi Bao Ngyuyen, It appears that your Simulink model is encountering an error due to the presence of algebraic loops. Algebraic ...

plus d'un an il y a | 0

Réponse apportée
Gcode file transfer to Moonraker via HTTP
Hi Will, I understand that you are trying to send a GCODE file from MATLAB to a Moonraker API server. The Moonraker documentat...

plus d'un an il y a | 0

Réponse apportée
How Do I Make a Dropdown of UI Elements in a Live Editor Task ?
Hi Rodney, I understand that you are working on a custom Live Editor Task, and you wish to add an Accordion component that is u...

plus d'un an il y a | 0

| A accepté

Réponse apportée
is it possible to Stepper Motor Drive simulate at 10 milisecond fixed time step
Hi @infent imran, I see that you are looking at the “Stepper Motor Drive” example model linked here - https://www.mathworks.com...

plus d'un an il y a | 0

Réponse apportée
How to fix the jiggly issue
The reason why your data contains noise usually depends on the data collection method and will require an investigation on that ...

plus d'un an il y a | 0

Réponse apportée
I got an error to the part that used to work no problem. Why?
Hi Asuka, I see that you are working on MathWorks' "Object Tracking and Motion Detection with Computer Vision" course. For the...

plus d'un an il y a | 0

Réponse apportée
What is the origin of the discrepancy in binning caused by the built-in Freedman–Diaconis method in the histcounts function?
Hi Drew, I observe the same discrepancy as you have stated – the bin width for the Freedman-Diaconis rule implemented by MATLA...

plus d'un an il y a | 0

Réponse apportée
Pulse width modulation using simscape blocks
Hi Krishna, I understand you are seeing a straight line upon measuring through the “Voltage Sensor” block instead of the expec...

plus d'un an il y a | 0

Réponse apportée
Issue When Update to MATLAB R2024a
Hi Eric, It sounds like you are experiencing an issue with MATLAB installer where the "Yes" and "No" radio buttons are overlapp...

plus d'un an il y a | 0

| A accepté

Réponse apportée
VideoReader Motion JPEG 2000 format does not work
Hi Evan, I understand that when you are importing an MJ2 file using ‘VideoReader’, it works fine in MATLAB R2023b but gives b...

plus d'un an il y a | 0

Réponse apportée
Why circuit breaker in simulink/simscape is not working when open circuit condition?
Hi Arun, I replicated your model from the screenshot you posted. On running it, the simulation froze after the circuit breaker...

plus d'un an il y a | 0

| A accepté

Réponse apportée
How do I disable Simulink Toolstrip Actions in MATLAB R2023b?
The action names that show up in the MATLAB Command Window after you hover over an icon and press CTRL should be used as-is. Not...

plus de 2 ans il y a | 0

| A accepté

A résolu


Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = 2...

plus de 2 ans il y a

A résolu


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

plus de 2 ans il y a

A résolu


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

plus de 2 ans il y a

A résolu


Indexed Probability Table
This question was inspired by a Stack Overflow question forwarded to me by Matt Simoneau. Given a vector x, make an indexed pro...

plus de 2 ans il y a

A résolu


Which doors are open?
There are n doors in an alley. Initially they are all shut. You have been tasked to go down the alley n times, and open/shut the...

plus de 2 ans il y a

Charger plus