photo

Rishabh Rathore


Actif depuis 2018

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
20 Réponses

Cody

0 Problèmes
40 Solutions

RANG
1 425
of 300 352

RÉPUTATION
50

CONTRIBUTIONS
0 Questions
20 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
7

RANG
 of 20 928

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
12 923
of 168 212

CONTRIBUTIONS
0 Problèmes
40 Solutions

SCORE
440

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

A résolu


Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...

plus de 7 ans il y a

A résolu


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

plus de 7 ans il y a

Réponse apportée
computing the average of all each month from all data in time series
Hey, I understand that you want the average of each column (representing months). You can use mean() to do that. For examp...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
concatenate cell array of cell arrays
I'm assuming you want to retain the data of one cell array as a column. A work around could be the following * Find the ...

plus de 7 ans il y a | 0

Réponse apportée
create a picture with matrix
Here's what I understand from your question, you have a matrix of 0s and 1s and want to generate a binary (black and white) imag...

plus de 7 ans il y a | 1

Réponse apportée
Morse code decoder, please help me
The problem with your solution is, you are comparing '.- -...' to '.-'. First break the input string to individual morse let...

plus de 7 ans il y a | 1

A résolu


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

plus de 7 ans il y a

Réponse apportée
How can I save 3 matrices created by for loop to save in a single matrix?
Since you know the size of the final matrix, first you can initialize the matrix of that size and then assign the appropriate ro...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
How to highlight the vertex (vertices) of a voronoi diagram?
you can use scatter to plot/highlight the vertices of the Voronoi diagram by adding the lines of code below at the end of your c...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
[Solving System of Linear Equations] What is the norm of the error and how is it different from the norm of the residual?
Error refers to the difference between the observed value and the actual values while residual is the disagreement between the o...

plus de 7 ans il y a | 0

Réponse apportée
Matlab taking too much time to give output
For the convergence problem, the upper bound could be used on the number of iterations, as suggested by Aakash. As for the probl...

plus de 7 ans il y a | 0

A résolu


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

plus de 7 ans il y a

A résolu


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

plus de 7 ans il y a

Réponse apportée
when using Design Error Detection and generate test, Simulink Design Verifier has exceeded the maximum processing time
One of the reasons for this could be that the 'maximum analysis time' in configuration parameter box is very small. You can i...

plus de 7 ans il y a | 0

Réponse apportée
Help With Starting Code
What i get from your question, you want a code that gives you the pairs of h and volume for all r and h.The code below creates a...

plus de 7 ans il y a | 0

Réponse apportée
how to get combination
Here's what I understand from your question, you want all divisors of a number. You can use in-built 'divisors()' function. ...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
3d Bar plot on map
You can plot image as a surface (on x-y plane) using the following code %Insert Image Z=imread('img.jpg'); [X,...

plus de 7 ans il y a | 1

| A accepté

Réponse apportée
Code printing double line
What is happening is that you are actually printing the whole vector instead of the latest 'perfect Number'. Make your print ...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
Import multiple excel sheets with multiple columns each into variables
You can use xlsread(xls_file,sheet_no) to read from particular sheet, refer <https://www.mathworks.com/help/matlab/ref/xlsread...

plus de 7 ans il y a | 1

| A accepté

Réponse apportée
How to make normalised frequency distribution plot?
Here's what I understand from your question, you want to normalize A and after normalization the NaNs gets replaced by a number....

plus de 7 ans il y a | 0

Réponse apportée
Power of sine wave plot
Here's what I understand from your question, you want to know how to calculate 'Power' of sine wave and plot it over Power Spect...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
How to use input signals as variables in Simulink blocks?
oh, you want use input signals as values for parameter? I'm afraid that's not possible. Signals and parameters are two different...

plus de 7 ans il y a | 2

Réponse apportée
if problem done based on the journal paper but not get results correctly, how to predict whether going path is correct r not?
There can be a lot of reasons that can cause the results to deviate from the journal. To name the few:- * Missed minute detai...

plus de 7 ans il y a | 0

Réponse apportée
Array of Structures pre-allocation - code analyzer - appears to change size every loop iteration
The reason behind is that you cleared the array x before running the second loop and the pre-allocation before second loop only ...

plus de 7 ans il y a | 0

Réponse apportée
How to use input signals as variables in Simulink blocks?
Here's what I understand from you question, you want to use variables as input/parameters not constants. So the way you can d...

plus de 7 ans il y a | 1

A résolu


Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = ...

plus de 7 ans il y a

A résolu


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

plus de 7 ans il y a

A résolu


Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...

plus de 7 ans il y a

A résolu


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

plus de 7 ans il y a

A résolu


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

plus de 7 ans il y a

Charger plus