photo

Mridul G


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
8 个回答

Cody

0 个问题
90 个答案

排名
3,183
of 299,793

声誉
18

贡献数
0 个提问
8 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,811

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
7,468
of 166,013

贡献数
0 个问题
90 个答案

评分
920

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
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 ...

7 years 前 | 0

| 已接受

已回答
what symbol is ths?
This looks to be a subtractor.

7 years 前 | 0

已回答
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,...

7 years 前 | 0

已回答
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...

7 years 前 | 0

已回答
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...

7 years 前 | 1

| 已接受

已回答
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)...

7 years 前 | 0

| 已接受

已回答
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...

7 years 前 | 0

| 已接受

已回答
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...

7 years 前 | 0