Domanda


How can I make arrows in Patches by using these codes?
<Code 1> %version that explicitly performs the inversion instead of just calling %lsqlin %set up some distances for a 1-dim...

oltre 2 anni fa | 0 risposte | 0

0

risposte

Domanda


If I want to plot arrow in patch, what codes do I have to use? And is there any method by using quiver and patch together?
If I want to plot arrow in patch, what codes do I have to use? And is there any method by using quiver and patch together?

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


If I want to plot arrow in patch, what codes do I have to use? And is there any method by using quiver and patch together?
If I want to plot arrow in patch, what codes do I have to use? And is there any method by using quiver and patch together?

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


If I want to plot like this, what codes do I have to use??
I have rainfall data of Seoul and Busan. If I want to plot like this, what codes do I have to use??

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


There will be 12 plots and I want to show 12 plots in one picture.
clear all Eqdate=datetime('18Jan23', 'Format', 'yyMMMdd', 'InputFormat', 'yyMMMdd'); files=dir('gps*'); for i=1:length(fi...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


I have total of 40 years = 40*365 days = 14600 days of rainfall datas. What if I want to represent a total of 40 plots per year, not per day unit?
p = textread('Rainfall of Busan (11.5.1981 11.5.2021).txt'); dt = 1; totalL = 14600; plot(p) I have total of 40 years = 40...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


I want to apply moving average filter! could you tell me how can I do that?
p = textread('Rainfall of Busan (11.5.1981 11.5.2021).txt'); dt = 1; totalL = 14611; T = [dt:dt:dt*totalL]; freqs = linspace...

oltre 2 anni fa | 2 risposte | 1

2

risposte

Domanda


How can I use lowpass filter while keeping x-axis and y-axis range at log ??
How can I use lowpass filter while keeping x-axis and y-axis range at log ??

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


What is this peak's meaning?
This graph is amplitude of Fourier transform of rainfalls (total of 14610 days) in frequency domain. In this case, what is this ...

oltre 2 anni fa | 2 risposte | 0

2

risposte

Domanda


How can I plot 'period' by using fft functoin??
How can I plot 'period' by using fft functoin??

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


Which filter do I have to use?
I have rainfalls data (11/5/1981 ~ 11/5/2021) for 41 years. If I want to see anual rainfall data (January ~ December) for 41yea...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


When I import this function, there is a error when I run this codes.
function importfile(fileToRead1) %IMPORTFILE(FILETOREAD1) % Imports data from the specified file % FILETOREAD1: file to re...

oltre 2 anni fa | 3 risposte | 0

3

risposte

Domanda


How can I make 1 by length x array of random numbers from -pi to pi ??
How can I make 1 by length x array of random numbers from -pi to pi ??

oltre 2 anni fa | 2 risposte | 0

2

risposte

Domanda


How can I create a "Phase Scrambler" function ??
How can I create a "Phase Scrambler" function ??

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


Can I ask how can I make randomphase by using code??
Can I ask how can I make randomphase by using code??

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I increase the number of Fourier frequencies by adding 500 zeros to the end of the 27-sample-long signal ??
fs = 250; t = 0:1/fs:0.107; L = length(t); x1 = sin(2*pi*50*t)+0.3; fftx1=fft(x1) freqHz = (0:1:length(x1)-1)*fs/L; plot(f...

oltre 2 anni fa | 2 risposte | 0

2

risposte

Domanda


I have to increase the number of Fourier frequencies by adding 500 zeros to the end of the 27-sample-long signal.
fs = 250; t = 0:1/fs:0.107; L = length(t); x1 = sin(2*pi*50*t)+0.3; fftx1=fft(x1) freqHz = (0:1:length(x1)-1)*fs/L; plot(f...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


I have to increase the number of Fourier frequencies by adding 500 zeros to the end of the 27-sample-long signal.
fs = 250; t = 0:1/fs:0.107; L = length(t); x1 = sin(2*pi*50*t)+0.3; fftx1=fft(x1) freqHz = (0:1:length(x1)-1)*fs/L; plot(f...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I calculate log10(variable) ??? there is error..
How can I calculate log10(variable) ??? there is error..

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I get signal-to-noise ratio (SNR)??
Could you tell me how can I get signal-to-noise ratio (SNR)??

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I call half of text by using "textread" ? (1*4096 matrix to 1*2048 matrix)
How can I call half of text by using "textread" ? (1*4096 matrix to 1*2048 matrix)

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


I have to use Fourier Transform without frequency range?
I have to use Fourier Transform without frequency range?

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I get the difference between successive quantization levels (i.e. the amplitude of the least significant bit)?
How can I get the difference between successive quantization levels (i.e. the amplitude of the least significant bit)? If there...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I split time series in a half?
The time series is consisted of 4096 samples. I want to split it by two of 2048 samples.

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


The images after filtering deformation
How has the filtering (low pass filter) affected magnitude and phase?

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How to trim time series?
X = rand(1,128)-0.5; fs = 1000; Ts = 1/fs; Y = lowpass(X,100,fs); plot(Y); Z = conv(X,Y); THE length of Z is 255 I wan...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


How can I make low pass filter of this?
How can I make low pass filter of this? The problem: Generate a time series X of length 128 that is a sequence of 128 random n...

oltre 2 anni fa | 1 risposta | 0

1

risposta

Domanda


I want to make time series of length 128 that is a sequence of 128 random numbers pulled from a uniform distribution with a mean of zero, a range of 1(i.e. from -0.5 to 0.5)
I want to make time series of length 128 that is a sequence of 128 random numbers pulled from a uniform distribution with a mea...

oltre 2 anni fa | 0 risposte | 0

0

risposte

Domanda


How to present point of latitude and elevation on the map by using MATLAB?
How to present point of latitude and elevation on the map by using MATLAB? I want to show the dots on the Alaska map. Dots are ...

oltre 2 anni fa | 1 risposta | 0

1

risposta