photo

lokender Rawat


2018년부터 활동

Followers: 0   Following: 0

통계학

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

배지 보기

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

대략 6년 전 | 2

| 수락됨

답변 있음
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년 전 | 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...

대략 6년 전 | 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...

대략 6년 전 | 0

| 수락됨

답변 있음
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년 전 | 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...

대략 6년 전 | 0

| 수락됨

답변 있음
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년 전 | 1

| 수락됨

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

문제를 풀었습니다


asdf
asdf

대략 6년 전

답변 있음
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년 전 | 0

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

문제를 풀었습니다


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

대략 6년 전

더 보기