Answered
App Designer - Tab between fields order issue
Hello, It just so happens that the order components appear in the component browser, from top to bottom, is the same order in ...

4 years ago | 1

Answered
"There are no compatible support packages available to install from this location"
Hello, Make sure you have followed the process listed in the following link https://www.mathworks.com/matlabcentral/answers/...

4 years ago | 0

Answered
pdistmex - Error - Undefined function 'pdistmex' for input arguments of type 'double'.
Hello, You usually get this error if don’t have license to the required toolbox. Ensure that you have license to ‘Statistics a...

4 years ago | 0

Answered
Deploy deep nueral network to Raspberry pi
Hello, You can generate code for your neural network and deploy the executable on to the hardware. Refer to the following do...

4 years ago | 0

Answered
create function to plot several timeseries
You can call the function as you call any other function by passing the data to be plotted as input arguments to the function.

4 years ago | 1

| accepted

Answered
App Designer UIAxes Mouse Click Registration
You can use ‘getpts’ to get the coordinates of the selected points but it is not recommended. In order to select a region from...

4 years ago | 0

| accepted

Answered
Using costant value to Anonymous function
Assuming by ‘calling back a constant value’ you mean that the anonymous function returns a constant value the following code is ...

4 years ago | 0

Answered
How to change underlying char data to double with cells
‘strnum’ can be used to convert data of type ‘char’ to ‘double’ So in your case you can apply this function to each element of...

4 years ago | 1

| accepted

Answered
How to search and pull specific rows from csv based on input window response
‘readtable()’ could be used to read the entire data from the .csv file to a table. You can then use the user input to scan the t...

4 years ago | 0

Answered
From Gui how to create the folder analysis data
'mkdir’ can be used to create a folder programatically. In your GUI you can put any UIComponent like a button with callback to...

4 years ago | 1

Answered
How do I connect multiple Parrot Mambo Drones with simulink or matlab?
As mentioned in this link ‘MATLAB Support Package for Parrot drone’ does not provide support to connect multiple drones at a tim...

4 years ago | 0

| accepted

Answered
Multiple instances of randi in Stateflow generate same sequence of numbers
'rng’ function can be used to control the random number generation. Call this function before calling ‘randi’. For more info...

4 years ago | 0

Answered
Format result in Live Script Editor
There might not be a way if ‘x’ value changes . But if ‘x’ value is fixed you can get the desired result with the help of ‘late...

4 years ago | 0

Answered
Does an ODBC Driver exist, connecting ODBC databases to Matlab working on a Mac?
The driver to be installed depends on the type of database you own. So consult your database administrator or refer to your data...

4 years ago | 0

Answered
Use a Live Script to document an APP?
The use of live scripts would be a good option for documentation. For more information on how to share live scripts refer to the...

4 years ago | 0

Answered
How to install MATLAB on USB device?
It depends on the license type you own. For more information on what type of licenses allow this refer to the following link. ...

4 years ago | 0

Answered
Variable display while debugging in MATLAB 2019
This feature is still available in MATLAB 2019. You can view the values by checking the 'Value’ field in the list of fields th...

4 years ago | 0

Answered
Import STL File into MATLAB
In ‘importGeometry(model,geometryfile)’ function, parameter ‘geometryfile’ refers to the path to STL file. So you don’t need to ...

4 years ago | 0

Answered
Use imdistline function in App Designer
There might not be an exact function but you can use the following workaround to replicate its behavior. After displaying the ...

4 years ago | 0

Answered
Logging with referenced model
Referring to the following question might help you. https://www.mathworks.com/matlabcentral/answers/475787-how-can-i-use-to-wor...

4 years ago | 0

Answered
findng critical path on my project schedule??
‘xlsread(filename)’ or ‘readtable(filename)’ can be used to read an excel file. Refer to the following links for more informat...

4 years ago | 0

Answered
how can I activate a data cursor on a matlab visualisation app
‘datacursormode’ can be used to enable or disable data cursor mode. For further information refer to the following link http...

4 years ago | 0

Answered
Can I provide custom method/function to be included in c++ class generated by simulink
When ‘Model Source’ block is used the code generator adds external code that you specify to the source file (model.c or model.cp...

4 years ago | 0

Answered
How do I display geo referenced data on a webmap
‘webmap’ function can be used to create a webmap in a browser. More information on how to use this function can be found in the ...

4 years ago | 0

Answered
Rotate stacked plot Labels to have them vertical - App Designer
For normal plots ‘ytickangle’ can be used in order to rotate the y-axis label. But in case of stacked plots y-axis labels are ...

4 years ago | 0

| accepted

Answered
How can I use 'To Workspace' and 'To File' blocks in Model Reference block with configuration parameter 'Total number of instances allowed per top model' set to 'Multi'?
You cannot reference a model more than once in a model hierarchy if the referenced model contains ‘To File’ blocks. You can ha...

4 years ago | 0

| accepted

Answered
Returning from functions in debugging mode
You cannot force return from a function using MATLAB. But if your script files have an error you can use ‘try-catch’ blocks wher...

4 years ago | 0

| accepted

Answered
Palette Pane Missing from Simulink Real-Time
When the ‘floating’ option is selected the panel will be displayed as a separate window. You might not have noticed the window. ...

4 years ago | 0

Answered
How can I set the "Prompt location" property of a Simulink.MaskParameter programmatically.
Mask parameter “Prompt Location” can be set programatically using the command ‘p.DialogControl.PromptLocation’ Where p is a ma...

4 years ago | 0

| accepted

Answered
How to use Alternative Box Plot
In order to use boxPlot(x,y) the number of elements in ‘x’ should be equal to the number of columns in ‘y’. In your code y is ...

4 years ago | 0

| accepted

Load more