Antonio Ciociola
Followers: 0 Following: 0
Feeds
질문
Random Point from meshgrid
Hi everybody, I've a simple problem. I've to pick a certain number "N" of point from a meshgrid. The constraints of the proble...
거의 3년 전 | 답변 수: 1 | 0
1
답변답변 있음
Plotting Square wave from pressure signal
This can be done transforming your signal into an arry of logic values: sig_bool = (signal>a & signal<=d);
Plotting Square wave from pressure signal
This can be done transforming your signal into an arry of logic values: sig_bool = (signal>a & signal<=d);
4년 초과 전 | 0
답변 있음
How can I replace a value that comes after a specific string in a text file?
Use textscan: filename = 'nameofyourfile.txt'; fid = fopen(filename,'r'); [A] = textscan(fid,'%s %f') Then you can rewrite y...
How can I replace a value that comes after a specific string in a text file?
Use textscan: filename = 'nameofyourfile.txt'; fid = fopen(filename,'r'); [A] = textscan(fid,'%s %f') Then you can rewrite y...
4년 초과 전 | 0
| 수락됨
답변 있음
Am I wrong? need help with a question
Your question might contain some error, I believe.. The correct formula should be: And the Volume can be calculated in this...
Am I wrong? need help with a question
Your question might contain some error, I believe.. The correct formula should be: And the Volume can be calculated in this...
4년 초과 전 | 0
답변 있음
Need to conduct analysis across four .mat files at once - how do I load multiple .mat files?
The problem seems to be related to this instruction: s = [1 4]; But then you're loading the mat files in this way: s(i) = lo...
Need to conduct analysis across four .mat files at once - how do I load multiple .mat files?
The problem seems to be related to this instruction: s = [1 4]; But then you're loading the mat files in this way: s(i) = lo...
4년 초과 전 | 0
답변 있음
my code doesn't get into my If statement
The problem seems to be here: counter=sc-4; if counter>1 && counter<sc-4 If you set "counter" to "sc-4" the following cond...
my code doesn't get into my If statement
The problem seems to be here: counter=sc-4; if counter>1 && counter<sc-4 If you set "counter" to "sc-4" the following cond...
4년 초과 전 | 0
| 수락됨
답변 있음
Why I cannot "set" what I got with "get"?
Try this: set(c,{'String'},zz); For more information take a look to "set" reference page: Set Help
Why I cannot "set" what I got with "get"?
Try this: set(c,{'String'},zz); For more information take a look to "set" reference page: Set Help
4년 초과 전 | 0
| 수락됨
답변 있음
How use filter from filter designer
y = filter(Hd,x); x is the signal that you want to filter.
How use filter from filter designer
y = filter(Hd,x); x is the signal that you want to filter.
4년 초과 전 | 1
| 수락됨
답변 있음
Problem with FFT amplitude plot
It's hard to understand the problem without data and code. The error that you get seems related to the amplitude of the spectr...
Problem with FFT amplitude plot
It's hard to understand the problem without data and code. The error that you get seems related to the amplitude of the spectr...
4년 초과 전 | 0
답변 있음
Issue with data imputation, (inserting date time value into an array of dates).
The error that you get it's caused by the horzcat function. Your datetime vector it's a row vector, therefore you have to use v...
Issue with data imputation, (inserting date time value into an array of dates).
The error that you get it's caused by the horzcat function. Your datetime vector it's a row vector, therefore you have to use v...
4년 초과 전 | 0
답변 있음
how do i convert RGB image to HSV and then generate histogram of that hsv image?
Maybe this could help: https://www.mathworks.com/matlabcentral/answers/273563-how-to-draw-histogram-of-hsv-image
how do i convert RGB image to HSV and then generate histogram of that hsv image?
Maybe this could help: https://www.mathworks.com/matlabcentral/answers/273563-how-to-draw-histogram-of-hsv-image
4년 초과 전 | 0
| 수락됨
답변 있음
Sampling signal in Time domain
It seems that your data has been taken by sampling a sinusoid using a sampling frequency that is only two time the frequency of ...
Sampling signal in Time domain
It seems that your data has been taken by sampling a sinusoid using a sampling frequency that is only two time the frequency of ...
4년 초과 전 | 0
답변 있음
Calculating daily average curve from weekly data
If i don't get wrong, it seems that you want to perform this operation: %% Mean along 10 columns g1m = mean(g1,2); %% Resha...
Calculating daily average curve from weekly data
If i don't get wrong, it seems that you want to perform this operation: %% Mean along 10 columns g1m = mean(g1,2); %% Resha...
4년 초과 전 | 0
| 수락됨