Community Profile

photo

lokender Rawat


Con actividad desde 2018

Followers: 0   Following: 0

Estadísticas

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

Ver insignias

Feeds

Ver por

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

casi 6 años hace | 2

| aceptada

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

casi 6 años hace | 1

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

casi 6 años hace | 1

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

casi 6 años hace | 0

| aceptada

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

casi 6 años hace | 0

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

casi 6 años hace | 0

| aceptada

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

casi 6 años hace | 1

| aceptada

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

casi 6 años hace | 0

| aceptada

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

casi 6 años hace | 0

Resuelto


asdf
asdf

casi 6 años hace

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

casi 6 años hace | 0

Resuelto


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<http://upload.wikimedia.org/wikipe...

casi 6 años hace

Resuelto


Counting Sequence
Given a vector x, find the "counting sequence" y. A counting sequence is formed by "counting" the entries in a given sequence...

casi 6 años hace

Resuelto


Maximum running product for a string of numbers
Given a string s representing a list of numbers, find the five consecutive numbers that multiply to form the largest number. Spe...

casi 6 años hace

Resuelto


Extract leading non-zero digit
<http://en.wikipedia.org/wiki/Benford%27s_law Benford's Law> states that the distribution of leading digits is not random. This...

casi 6 años hace

Resuelto


Right and wrong
Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: <http://en.wikipe...

casi 6 años hace

Resuelto


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

casi 6 años hace

Resuelto


Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...

casi 6 años hace

Resuelto


Remove the small words from a list of words.
Your job is to tidy up a list of words that appear in a string. The words are separated by one or more spaces. Remove all words ...

casi 6 años hace

Resuelto


Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...

casi 6 años hace

Resuelto


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

casi 6 años hace

Resuelto


Tell me the slope
Tell me the slope, given a vector with horizontal run first and vertical rise next. Example input: x = [10 2];

casi 6 años hace

Resuelto


Make one big string out of two smaller strings
If you have two small strings, like 'a' and 'b', return them put together like 'ab'. 'a' and 'b' => 'ab' For extra ...

casi 6 años hace

Resuelto


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

casi 6 años hace

Resuelto


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

casi 6 años hace

Resuelto


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

casi 6 años hace

Resuelto


Remove all the words that end with "ain"
Given the string s1, return the string s2 with the target characters removed. For example, given s1 = 'the main event' your ...

casi 6 años hace

Resuelto


Summing Digits within Text
Given a string with text and digits, add all the numbers together. Examples: Input str = '4 and 20 blackbirds baked in a...

casi 6 años hace

Resuelto


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

casi 6 años hace

Resuelto


Make a Palindrome Number
Some numbers like 323 are palindromes. Other numbers like 124 are not. But look what happens when we add that number to a revers...

casi 6 años hace

Cargar más