photo

lokender Rawat


Aktiv seit 2018

Followers: 0   Following: 0

Statistik

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

Abzeichen anzeigen

Feeds

Anzeigen nach

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

etwa 6 Jahre vor | 2

| akzeptiert

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

etwa 6 Jahre vor | 1

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

etwa 6 Jahre vor | 1

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 1

| akzeptiert

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

etwa 6 Jahre vor | 0

| akzeptiert

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

etwa 6 Jahre vor | 0

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

etwa 6 Jahre vor | 0

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

mehr als 6 Jahre vor | 0

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

mehr als 6 Jahre vor | 0

| akzeptiert

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

mehr als 6 Jahre vor | 0

| akzeptiert

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

mehr als 6 Jahre vor | 0

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

mehr als 6 Jahre vor | 0

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

mehr als 6 Jahre vor | 0

| akzeptiert

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

mehr als 6 Jahre vor | 1

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

mehr als 6 Jahre vor | 0

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

mehr als 6 Jahre vor | 0

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

mehr als 6 Jahre vor | 0