Mridul G
自 2018 起处于活动状态
Followers: 0 Following: 0
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 ...
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 ...
6 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,...
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,...
6 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...
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...
6 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...
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...
6 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)...
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)...
6 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...
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...
6 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...
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...
6 years 前 | 0