photo

lokender Rawat


Active since 2018

Followers: 0   Following: 0

Statistics

All
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
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...

6 years ago | 2

| accepted

Answered
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...

6 years ago | 1

Answered
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...

6 years ago | 1

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 1

| accepted

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 1

Answered
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 ...

6 years ago | 0

Answered
.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...

6 years ago | 0

Answered
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...

6 years ago | 0