photo

lokender Rawat


Con actividad desde 2018

Followers: 0   Following: 0

Estadística

All
MATLAB Answers

0 Preguntas
20 Respuestas

Cody

0 Problemas
82 Soluciones

CLASIFICACIÓN
1.468
of 300.381

REPUTACIÓN
48

CONTRIBUCIONES
0 Preguntas
20 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
6

CLASIFICACIÓN
 of 20.941

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
7.906
of 168.477

CONTRIBUCIONES
0 Problemas
82 Soluciones

PUNTUACIÓN
870

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

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

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 años hace | 0

Resuelto


asdf
asdf

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 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 ...

más de 7 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...

más de 7 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...

más de 7 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];

más de 7 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 ...

más de 7 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...

más de 7 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...

más de 7 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

más de 7 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 ...

más de 7 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...

más de 7 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...

más de 7 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...

más de 7 años hace

Cargar más