photo

Mridul G


Attivo dal 2018

Followers: 0   Following: 0

Statistica

All
MATLAB Answers

0 Domande
8 Risposte

Cody

0 Problemi
90 Soluzioni

RANK
3.195
of 300.364

REPUTAZIONE
18

CONTRIBUTI
0 Domande
8 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
1

RANK
 of 20.934

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
7.584
of 168.407

CONTRIBUTI
0 Problemi
90 Soluzioni

PUNTEGGIO
920

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Knowledgeable Level 2
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
How can i change my x-axis to read real time
you may consider axis shifting x1, dx y1 y2 constant axis([x1 x1+dx y1 y2]) and apply drawnow after each plot so the graph is ...

oltre 7 anni fa | 0

| accettato

Risposto
what symbol is ths?
This looks to be a subtractor.

oltre 7 anni fa | 0

Risposto
How to calculate the Line of sight (LOS) between two points in a Eucleidean appraoch?
Assuming you know the coordinates of all the points and obstacles (and holes?), you can follow the below steps. Points P1(x1,...

oltre 7 anni fa | 0

Risposto
i want to show that the audios are not same. how will i compare both the audio?
I think Fast Fourier Transform (FFT) can be used for comparison. FFT is an algorithm for converting a time-domain signal into a...

oltre 7 anni fa | 0

Risposto
Write data .txt format with different vector in different column
A = [A B]; fid=fopen('MyFile.txt','wt'); for i = 1:length(A) fprintf(fid,'%d %d\n',A(i,1),A(i,2)); end fc...

oltre 7 anni fa | 1

| accettato

Risposto
table having entries as points of elliptic curves
I assume you have 123387 (x,y) points, want to filter out points with the same x coordinate (pick one randomly for each x value)...

oltre 7 anni fa | 0

| accettato

Risposto
can anyone help me to solve this error?
The problem lies in the function f f = @(x) exp(-a(x)-(b(x).*(c(x)+d(x)))); You have declared c and d as scalar variable...

oltre 7 anni fa | 0

| accettato

Risposto
Response of the system
Typical causes can be divide by zero (1/0 = inf) or general unstable dynamics that quickly blow up over time. You should check t...

oltre 7 anni fa | 0