Community Profile

photo

lokender Rawat


Active since 2018

Statistics

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

View badges

Content Feed

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

bijna 6 jaar 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...

bijna 6 jaar 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...

bijna 6 jaar 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...

bijna 6 jaar 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...

bijna 6 jaar 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...

bijna 6 jaar 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...

bijna 6 jaar 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...

bijna 6 jaar 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...

bijna 6 jaar ago | 0

Solved


asdf
asdf

bijna 6 jaar ago

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

bijna 6 jaar ago | 0

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Solved


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

bijna 6 jaar ago

Load more