Statistics
RANK
1,471
of 300,611
REPUTATION
48
CONTRIBUTIONS
0 Questions
20 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
6
RANK
of 21,028
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Import mat file in to App Designer
You can create a sample mat file named 'example.mat' with just four variables (a=1,b=2,c=3,d=[10 11 12 13]). Go to the 'Code Vie...
7 years ago | 2
| accepted
How to find my license file?
Please look at the following post to find out the license file: <https://in.mathworks.com/matlabcentral/answers/93105-what-ar...
7 years ago | 1
synchronize two or more scroll bars (or scroll bars of listboxes)
You can write function callback for this. You can refer the below documentation link on how to write callbacks: <https://in.m...
7 years ago | 1
how to make the edit box will change the popup menu and run specific process
You can use the Editable state of the drop-down component using the following command: dropDownObject.Editable='on'; Re...
7 years ago | 0
| accepted
Not enough input arguments when using setappdata
The error you are getting is because of the incorrect way of passing parameters to the function 'wheelspin' from the 'main' func...
7 years ago | 0
Point me to documentation of ReadYaml()
Currently MATLAB does not support YAML parsing but third party tools like 'yamlmatlab' can be used for the purpose as needed. It...
7 years ago | 0
| accepted
Is it possible continue a simulation from one point intermediate?
Yes, you can refer the below link to find how to go about that: <https://in.mathworks.com/help/simulink/ug/saving-and-restori...
7 years ago | 1
| accepted
Why imregister is not performing well?
This is a limitation of the 'imregister' function. The local minimum 'imregister' finds during calculation often does not corres...
7 years ago | 0
| accepted
Embedding generated C++ code into another project
Follow the steps below to achieve your goal of embedding c++ code in another project: 1. Generate Code using GRT TLC. 2. F...
7 years ago | 0
how to normalize or plot in the same scale in 2 sided graph ?
Since you are able to generate the plot, the only thing is to have it scaled to same values on both sides of y-axis. You can use...
7 years ago | 0
I want to add a text in each of my plot of the PlotMatrix
Since you want the values of R(3x3) matrix row-wise to be displayed on the plot in a column-wise fashion. You need to keep track...
7 years ago | 0
What causes difference between ezplot and fplot for the same function plotted below?
ezplot(f) plots the expression f(x) over the default domain -2π < x < 2π, where f(x) is an explicit function of only x. Wh...
7 years ago | 0
| accepted
Solving system of second order differential equations
The return type of the parameter from the function block must be a column vector. So, you can add the below statement at the end...
7 years ago | 0
| accepted
performance of diff on a logical array
You can simply declare an array "mat" and do the following, you do not need to create another new double array here. It will fin...
7 years ago | 0
Condition on zero crossing
Since you mentioned that there is no single value in the array which equals zero. And you specifically want to do some task when...
7 years ago | 0
Size images in image set.
You do not need to convert these images to a particular size. You can use "imageSet class" and the following syntax to create th...
7 years ago | 0
| accepted
Call a Matlab function in Simulink from the current folder
There are numerous ways to call a function in Simulink block: 1. MATLAB function block - intend to generate code from your m...
7 years ago | 1
How can i derivate/integrate a function f(x) in Simulink using MATLAB?
As you have already written the MATLAB script for the task. You can directly use "MATLAB function block" in Simulink and insert ...
7 years ago | 0
.Warning: You are using gcc version '5.4.0'. The version of gcc is not supported. The version currently supported is '4.9.x'.
Since you have a higher version of gcc which is currently not supported in MATLAB R2017b, you will have to install GCC C/C++ 4.9...
8 years ago | 0
Compare two matrices and find similar values
From my understanding,you want to find the closest matching row in matrix B for each of the rows in matrix A in terms of its val...
8 years ago | 0



