Answered
i am not able to make payment for license. Please help
Hi Aditya, As this is a specific issue, we cannot reproduce this at our end. I suggest you contact MathWorks support to resolve...

3 years ago | 0

Answered
Simulink , data store memory, different value of reading/writing
Hi Jack, I see that there is a small time gap before the Data-Store Read block 'reads' the data from the data store memory. Thi...

3 years ago | 0

| accepted

Answered
How to configure this pulse generator block in simulink
Hi, You can load a timeseries object along with the 'From Workspace' block to generate custom Signals in Simulink. For example,...

3 years ago | 0

Answered
Select data above a specific threshold & minimum length
Hi, You can use the 'MinPeakHeight' and 'MinPeakWidth' Name-Value pairs in the findpeaks function to set the minimum peak heigh...

3 years ago | 0

Answered
procced the for loop until UIButton pushed
Hi, You can use the uiwait function to pause the execution and wait for the button click. You can refer to uiwait documentatio...

3 years ago | 0

Answered
Transforming output of a function to a struct
Hi, The advantage with MATLAB table is that it can hold both 'non-categorical' and 'categorical' data. But when converting the ...

3 years ago | 0

| accepted

Answered
How to properly write a matrix in a for loop?
Hi David, For the 'gcode' variable to save all the data for 12 cells of input, 'gcode' also needs to be a cell array of size 1...

3 years ago | 0

| accepted

Answered
Finding Fourier coefficients from signal
Hi, There are three posible methods to achieve this 1. Create a custom equation in the Curve Fitting Toolbox defining as man...

3 years ago | 1

| accepted

Answered
No result being displayed in Edit box
Hi, Try using the 'set' function to assign values in guide. set(handles.edit21, 'String', num2str(tt)); Hope this helps

3 years ago | 0

| accepted

Answered
How to use annotation loop in Simulink Report Generator?
Hi, Annotation loop can be added to the Simulink Report Generator by customizing the report generator. Once in the customizatio...

3 years ago | 0

Answered
How can you include hyperlinks in the model and the report?
Hi Joshua, Hypelinks can be added to the model canvas via annotations. This documentation page helps you with adding the hyper...

3 years ago | 0

Answered
Using deconv to divide vectors if the numerator has a smaller degree than the denominator
Hi, 'deconv' function returns two outputs. One is the quotient, returned as a row vector. The other output is the reminder as t...

3 years ago | 0

Answered
How can you link annotations and blocks in the report generator, just like you can in the canvas via lines?
Hi Joshua, Simulink Report Generator maintains all the annotation links in the generated report as given in the canvas. For Ex...

3 years ago | 0

Answered
help in sorting through a concatenated data
Hi, The variable 'x' in your attached screenshot is a structure array, which can be accessed in the following way. s = x(i).PC...

3 years ago | 0

Answered
State transition matrix for CTMC
Hi, As this seems to a HW problem, I can give you documentation links and MATLAB Answers comunity links that might be helpful ...

3 years ago | 1

Answered
Remove specific edgelabels in the plot of a graph
Hi, You can use a index array to specify which graph edges to have the edgeLabels. For example, s = [1 1 1 2 2 3 4]; t = [2 3...

3 years ago | 0

| accepted

Answered
How do I omit the quotes when writing Cellarray into PDF Report?
Hi, Post-processing of the table entries can be done to remove the 'quotes' from the strings before adding the table to the rep...

3 years ago | 4

| accepted

Answered
Unpacking structured Data with multiple Fields
Hi Andy, If you want to create a variable to store the data contained in 'measurement.transient.timeDomain', you can use the f...

3 years ago | 0

| accepted

Answered
Fill an array according to the values of a different array
Hi Patrick, Here is a small script for filling array based on another array. % Lets say %A = 24 3 % 22 5 % 34...

3 years ago | 0

| accepted

Answered
Batch image processing loop
Hi, The image that you are reading using 'imread' in the for loop is assigned to a variable 'imageArray', whereas the operatio...

3 years ago | 0

| accepted

Answered
State Flow chart transform
Hi, As of R2021a, the feature to create a State Transition Table from a StateFlow Chart is not available. This has been brought...

3 years ago | 0

Answered
How do I get buttons in a panel to be automatically centered when the panel is resized using App Designer?
Hi William, This is a known limitation of the App Designer and the developers might consider it for a future release. However ...

3 years ago | 2

Answered
value must be a double scaler
Hi Rashed, As suggested by Walter, you can use the root function in MATLAB to find the roots of a cubic polynomial. From the ...

3 years ago | 0

| accepted

Answered
How can i use ' libisloaded() ' function and ' addpath' function in SIMULINK?
Hi, You can call this MATLAB Script in the 'PreLoadFcn' callback of Simulink. Refer to this documentation page to learn more a...

3 years ago | 0

Answered
Data Inspector Run Names
Hi, You can programatically save the contents of the Simulink Data Inspector using the save API provided by Simulink. You can p...

3 years ago | 0

| accepted

Answered
How to use a button to delete the last value from a TextArea? [MATLAB app designer]
Hi, The TextArea component in the appDesigner stores values in the form of a cell array. This helps to display more than one l...

3 years ago | 1

| accepted

Answered
Function Argument Validation from Class Properties ignores defaults
Hi, As of R2020b, meta class operator '?' can be used to validate function arguments. It does not support assignment of default...

3 years ago | 2

| accepted

Answered
How to create a plot with constant figure size and inner position
Hi You can create plots with a fixed position and a fixed size by setting the 'position' property. By default, 'position' is i...

3 years ago | 0

| accepted

Answered
Best way to document model design - Is it possible to incorporate everything in one model?
Hi Joshua, The System Design Description is a standard report that can be generated with Simulink Report Generator. This inclu...

3 years ago | 0

Answered
How to Run Matlab in Jupyter in VS Code
Hi, Currently we have a way to integrate Matlab with Jupyter notebook and Jupyter lab. Please check the github link: https://gi...

3 years ago | 1

| accepted

Load more