Content Feed
답변 있음
Multiple errors- Not that great at Matlab :(
@azaandria, It looks like 3 errors but it is really only one error. Error using DynamicResponse/parfor%supply_1 Index in posi...
Multiple errors- Not that great at Matlab :(
@azaandria, It looks like 3 errors but it is really only one error. Error using DynamicResponse/parfor%supply_1 Index in posi...
2일 전 | 0
답변 있음
help me with for loop
@nirwana, @Stephen23 knows more about Matlab than almost anybody. When he says "I doubt there is much of a difference", I think...
help me with for loop
@nirwana, @Stephen23 knows more about Matlab than almost anybody. When he says "I doubt there is much of a difference", I think...
2일 전 | 0
답변 있음
Largest portion of largest correlation coefficient
@Roohollah, I will suggest an approach, but first, why do you want to do this? It sounds suspicious: like you are selecting a ...
Largest portion of largest correlation coefficient
@Roohollah, I will suggest an approach, but first, why do you want to do this? It sounds suspicious: like you are selecting a ...
3일 전 | 0
답변 있음
calculate volume from iso-surface coordinates (x,y,z).
@Raju, Find the delaunay triangulation of the 3D points with DT=delaunay(x,y,z); This gives a set of tetrahedrons which fill...
calculate volume from iso-surface coordinates (x,y,z).
@Raju, Find the delaunay triangulation of the 3D points with DT=delaunay(x,y,z); This gives a set of tetrahedrons which fill...
4일 전 | 0
답변 있음
Take the product of two probability density function histograms generated from data
@David Gillcrist, Since you did not provide data, let's create some. x1=rand(10000,1)+rand(10000,1); % pdf(x1) = triangle fr...
Take the product of two probability density function histograms generated from data
@David Gillcrist, Since you did not provide data, let's create some. x1=rand(10000,1)+rand(10000,1); % pdf(x1) = triangle fr...
4일 전 | 0
답변 있음
Extract Epoch from EEG signal at Matlab without EEGLab
@Apkbark, The answer depends on the file structure. Different EEG machines save data in different formats. You will need to u...
Extract Epoch from EEG signal at Matlab without EEGLab
@Apkbark, The answer depends on the file structure. Different EEG machines save data in different formats. You will need to u...
6일 전 | 0
답변 있음
Solving system of odes with a power using ode45
@Thomas TJOCK-MBAGA, Yes you can do it with ode45(). dX/dt = -0.000038*X - (X*(X/Xinit)^frac)*rext dY/dt = - 0.000038*Y + re...
Solving system of odes with a power using ode45
@Thomas TJOCK-MBAGA, Yes you can do it with ode45(). dX/dt = -0.000038*X - (X*(X/Xinit)^frac)*rext dY/dt = - 0.000038*Y + re...
6일 전 | 1
답변 있음
Random number generate - Specific values
@Guilherme Lopes de Campos, x=[7,8.5,9.625,12.25]; z=x(randi(4,1,7)) % 7 randomly selected from x z=x(randi(4,1,5000)); % 5...
Random number generate - Specific values
@Guilherme Lopes de Campos, x=[7,8.5,9.625,12.25]; z=x(randi(4,1,7)) % 7 randomly selected from x z=x(randi(4,1,5000)); % 5...
6일 전 | 0
답변 있음
How to make a nonperiodic signal periodic?
@Matthew, If your goal is for the signal to repeat so that x(7...14)=x(0...7), and x(-7...0)=x(0...7), then I recommend using m...
How to make a nonperiodic signal periodic?
@Matthew, If your goal is for the signal to repeat so that x(7...14)=x(0...7), and x(-7...0)=x(0...7), then I recommend using m...
6일 전 | 0
답변 있음
How do I change datetime values?
@Marcus Johnson, dt1=datetime(1978,12,1)+(0:1/24:23/24); % each hour of the day dt1.Format="yyyy-MM-dd HH:mm"; disp([dt1(1), ...
How do I change datetime values?
@Marcus Johnson, dt1=datetime(1978,12,1)+(0:1/24:23/24); % each hour of the day dt1.Format="yyyy-MM-dd HH:mm"; disp([dt1(1), ...
6일 전 | 0
| 수락됨
답변 있음
How to optimize the problem?
@Hamid Iftikhar, We know from symmetry that the best collector angle will be when the collector points south, i.e. when collect...
How to optimize the problem?
@Hamid Iftikhar, We know from symmetry that the best collector angle will be when the collector points south, i.e. when collect...
6일 전 | 0
| 수락됨
답변 있음
How to optimize the problem?
@Hamid Iftikhar, You ask: "How can I get beta and Z as optimum scalar value that generate whole vector 'th' with values less th...
How to optimize the problem?
@Hamid Iftikhar, You ask: "How can I get beta and Z as optimum scalar value that generate whole vector 'th' with values less th...
7일 전 | 1
답변 있음
Inertial Sensor Noise Analysis With Varying Frequency
@Tanner, [edit: fix typos] You do not have to set maxNumM=250 just because your sampling rate is 250 Hz rather than 100 Hz. Yo...
Inertial Sensor Noise Analysis With Varying Frequency
@Tanner, [edit: fix typos] You do not have to set maxNumM=250 just because your sampling rate is 250 Hz rather than 100 Hz. Yo...
7일 전 | 1
| 수락됨
답변 있음
How to determine stability of transfer function from Nyquist?
@Ali Almakhmari, The answer depends on the form of the transfer functions which you have. Do you have hundreds of polynomials...
How to determine stability of transfer function from Nyquist?
@Ali Almakhmari, The answer depends on the form of the transfer functions which you have. Do you have hundreds of polynomials...
11일 전 | 0
| 수락됨
답변 있음
Function "diff" and the loss of an element in the array
@Bryan Ambrósio, [edit: changed the code for plotting d2xdt2. The plotted result is unchanged, but the new verison of the code ...
Function "diff" and the loss of an element in the array
@Bryan Ambrósio, [edit: changed the code for plotting d2xdt2. The plotted result is unchanged, but the new verison of the code ...
12일 전 | 0
답변 있음
Units for define max, min and sampling frequency
@Luis Jesús Olvera Lazcano, You call bandpass() as folows: frecuencia_min = 1 / 80; % Min frequency (cycle/day) frecuencia_ma...
Units for define max, min and sampling frequency
@Luis Jesús Olvera Lazcano, You call bandpass() as folows: frecuencia_min = 1 / 80; % Min frequency (cycle/day) frecuencia_ma...
12일 전 | 0
| 수락됨
답변 있음
Magnetic Declination in IMU filter
@Mohammad Reza Ramezani, I am confident that the algorithm does not account for magnetic declination. We called it compass var...
Magnetic Declination in IMU filter
@Mohammad Reza Ramezani, I am confident that the algorithm does not account for magnetic declination. We called it compass var...
12일 전 | 0
답변 있음
can you help me with the Y axis of my graph?
@Laura, I'm not sure what you want the graph to look like. The tiny amplitude of the fluctuations, on top of a large DC value, ...
can you help me with the Y axis of my graph?
@Laura, I'm not sure what you want the graph to look like. The tiny amplitude of the fluctuations, on top of a large DC value, ...
12일 전 | 1
| 수락됨
답변 있음
Finding the how much two curve got shifted ?
@Amit, [edit: I tried xcorr() and did notlike the results. xcorr() does not have a normalization option that I like. Theref...
Finding the how much two curve got shifted ?
@Amit, [edit: I tried xcorr() and did notlike the results. xcorr() does not have a normalization option that I like. Theref...
13일 전 | 1
| 수락됨
답변 있음
Data analysis - How to recognize local peaks/different areas?
@Jonas Chlechowitz, [edit: I attached each data file twice, by mistake. Removing the extra files.] You should fix the points t...
Data analysis - How to recognize local peaks/different areas?
@Jonas Chlechowitz, [edit: I attached each data file twice, by mistake. Removing the extra files.] You should fix the points t...
13일 전 | 0
답변 있음
Solve differential and algebraic equation system
@Surendra Ratnu, [edit: added several comments] Your code includes y0 = [0.1; 0.3024; 1.5725; 0.10]; t = [0 pi]; [t,y] = od...
Solve differential and algebraic equation system
@Surendra Ratnu, [edit: added several comments] Your code includes y0 = [0.1; 0.3024; 1.5725; 0.10]; t = [0 pi]; [t,y] = od...
13일 전 | 0
답변 있음
FFT of vibration data doesnt show frequency peaks on plots
@Mason Landrum, Whatever it is, it is slow: 2 mm in 15 minutes. Your vector for the frequencies that go with the FFT was incor...
FFT of vibration data doesnt show frequency peaks on plots
@Mason Landrum, Whatever it is, it is slow: 2 mm in 15 minutes. Your vector for the frequencies that go with the FFT was incor...
13일 전 | 0
| 수락됨
답변 있음
How to rotate a pointcloud data and align parallel with y-z axis?
@Mathanraj, xyz=xlsread('CS_DATA.xls'); C=cov(xyz); [V,D]=eig(C); % eigenvectors and eigenvalues of the covariance matrix d...
How to rotate a pointcloud data and align parallel with y-z axis?
@Mathanraj, xyz=xlsread('CS_DATA.xls'); C=cov(xyz); [V,D]=eig(C); % eigenvectors and eigenvalues of the covariance matrix d...
14일 전 | 0
답변 있음
please I need help to complete the descriptive statistics and representation of the following figures.
@Ebolo Nkongo, fileIn="global-analysis-forecast-bio-001-028-monthly_1693423231336.nc"; t=ncread(fileIn,'time'); The time data...
please I need help to complete the descriptive statistics and representation of the following figures.
@Ebolo Nkongo, fileIn="global-analysis-forecast-bio-001-028-monthly_1693423231336.nc"; t=ncread(fileIn,'time'); The time data...
14일 전 | 1
| 수락됨
답변 있음
Reformat and Merge Date and Time columns
@Douglas Leaffer, load('RVdata'); dt1=data.(1)+(3600*hour(data.(2))+60*minute(data.(2))+second(data.(2)))/86400; dt1.Format='...
Reformat and Merge Date and Time columns
@Douglas Leaffer, load('RVdata'); dt1=data.(1)+(3600*hour(data.(2))+60*minute(data.(2))+second(data.(2)))/86400; dt1.Format='...
14일 전 | 0
| 수락됨
답변 있음
how do you offset curves?
@Kathleen, Please post the simplest verion of the problem and the code that illustrate the problem you are trying to solve, to ...
how do you offset curves?
@Kathleen, Please post the simplest verion of the problem and the code that illustrate the problem you are trying to solve, to ...
14일 전 | 0
답변 있음
I want to surface plot in the attachment. Also see my code.
@Farooq Aamir, The code you shared does not generate a dataset like the image you shared, so I am not sure exactly what you are...
I want to surface plot in the attachment. Also see my code.
@Farooq Aamir, The code you shared does not generate a dataset like the image you shared, so I am not sure exactly what you are...
15일 전 | 0
답변 있음
In here we have 4 different values for attenuation in dB/m No I want to apply the attenuation in the channel gain, is this the right way
@Dina, [I moved my comment to an answer.] I recommend always including units for constants in your code, in the comments, to ...
In here we have 4 different values for attenuation in dB/m No I want to apply the attenuation in the channel gain, is this the right way
@Dina, [I moved my comment to an answer.] I recommend always including units for constants in your code, in the comments, to ...
19일 전 | 0
답변 있음
Pre-processing Data (PRV Signals)
@Jeffery, It looks to me like your code will do what you want, almost. However, I think your specification of MinPeakDistance=...
Pre-processing Data (PRV Signals)
@Jeffery, It looks to me like your code will do what you want, almost. However, I think your specification of MinPeakDistance=...
19일 전 | 1
답변 있음
Plots multiple lines-of-best-fits instead of just one
@Ilan, When I run your code, I do not get an extraneous line. See below: transStrain1=0:.05:1; longStrain1=0.2+0.6*transStrain...
Plots multiple lines-of-best-fits instead of just one
@Ilan, When I run your code, I do not get an extraneous line. See below: transStrain1=0:.05:1; longStrain1=0.2+0.6*transStrain...
21일 전 | 0