Harry MacDowel
2011년부터 활동
Followers: 0 Following: 0
“Computers are useless. They can only give you answers.”
(Pablo Picasso)
Professional Interests: data processing
Feeds
답변 있음
When using fopen, what's the difference when we include/exclude 'w' in the second half of the parenthesis?
The 'w' simply means write. So if the file 'exp.txt' does not exist, that command will create exactly the file, and allows yo...
When using fopen, what's the difference when we include/exclude 'w' in the second half of the parenthesis?
The 'w' simply means write. So if the file 'exp.txt' does not exist, that command will create exactly the file, and allows yo...
거의 11년 전 | 0
답변 있음
what is wrong with fprintf
Try this fprintf('the first number is %0.1f and the second is %0.1f\n',a,b)
what is wrong with fprintf
Try this fprintf('the first number is %0.1f and the second is %0.1f\n',a,b)
대략 13년 전 | 0
질문
Pan a Plotted Curve with a Stationary Plot Behind
figure; X = rand(100,1); Y = rand(100,1); plot(X,Y); hold on; plot(X,sin(Y)); I want to be able to pan t...
대략 13년 전 | 답변 수: 1 | 0
1
답변답변 있음
trend line calculation and display
First, plot the data like usual. Then go to Tools -> Basic Fitting Choose one of the fittings you like, then check Show ...
trend line calculation and display
First, plot the data like usual. Then go to Tools -> Basic Fitting Choose one of the fittings you like, then check Show ...
대략 13년 전 | 10
| 수락됨
답변 있음
How do I change the Matlab Desktop font preferences using commands?
You know what, Yair, I bet you gonna love this extraordinary File Exchange function called cprintf Check it out here:- ...
How do I change the Matlab Desktop font preferences using commands?
You know what, Yair, I bet you gonna love this extraordinary File Exchange function called cprintf Check it out here:- ...
대략 13년 전 | 0
답변 있음
While loop homework problem
I felt a bit bored so I do the coding for you. Also I might have use for this in near future. Just run arcCosSin in command wind...
While loop homework problem
I felt a bit bored so I do the coding for you. Also I might have use for this in near future. Just run arcCosSin in command wind...
대략 13년 전 | 0
| 수락됨
답변 있음
Display Log scale on y axis of graph
A log scale but not the log of your data, that is exactly what semilogy is doing. In fact I think you are not stating your prob...
Display Log scale on y axis of graph
A log scale but not the log of your data, that is exactly what semilogy is doing. In fact I think you are not stating your prob...
대략 13년 전 | 0
답변 있음
Somehow the 2nd X-Axis is not what it seems
Anyway I tried several more methods including those suggested by Walter. My conclusion of solving this problem is as follows:...
Somehow the 2nd X-Axis is not what it seems
Anyway I tried several more methods including those suggested by Walter. My conclusion of solving this problem is as follows:...
대략 13년 전 | 0
답변 있음
The music you listen to when you're Matlab-ing?
Interesting stuff you got there, Walter! For me it is some fast-paced hip hop songs like Eminem's "Lose Yourself" to wake me up...
The music you listen to when you're Matlab-ing?
Interesting stuff you got there, Walter! For me it is some fast-paced hip hop songs like Eminem's "Lose Yourself" to wake me up...
대략 13년 전 | 0
답변 있음
Somehow the 2nd X-Axis is not what it seems
The following code before the figure is plotted solve the apparent bug:- set(figurehnd,'position',[1 47 1440 786]); ...
Somehow the 2nd X-Axis is not what it seems
The following code before the figure is plotted solve the apparent bug:- set(figurehnd,'position',[1 47 1440 786]); ...
대략 13년 전 | 0
질문
Somehow the 2nd X-Axis is not what it seems
I am plotting a 2nd y-axis to my existing codes without any data on it so I am actually 'converting' from one to the other, as b...
대략 13년 전 | 답변 수: 3 | 0
3
답변질문
The music you listen to when you're Matlab-ing?
Hie all, I am always interested in what kind of music that gives you the kick when you're programming. You can be a little spec...
대략 13년 전 | 답변 수: 6 | 0
6
답변답변 있음
Regarding calling of matrix outside for loop
Combined = [] for i=1:1:4 Mat = rand(2); Combined = [Combined;Mat]; end
Regarding calling of matrix outside for loop
Combined = [] for i=1:1:4 Mat = rand(2); Combined = [Combined;Mat]; end
대략 13년 전 | 0
| 수락됨
답변 있음
finding number of a column in a cell (column that contains a specified string)
find(char(CELL)=='a') Does that help?
finding number of a column in a cell (column that contains a specified string)
find(char(CELL)=='a') Does that help?
대략 13년 전 | 1
답변 있음
burst duration
I do not know what do you mean by consecutive values. You mean 1,2,3,4,5,6,7... consecutive? Or 1,1,1,1,1,1,1.. consecutive? ...
burst duration
I do not know what do you mean by consecutive values. You mean 1,2,3,4,5,6,7... consecutive? Or 1,1,1,1,1,1,1.. consecutive? ...
대략 13년 전 | 0
| 수락됨
답변 있음
Indirect addressing in structure
It works like this:- P.variable = rand(20,1); x = [4 5 6 9]; for ii=1:4 P.variable(x(ii)) = ii; end ...
Indirect addressing in structure
It works like this:- P.variable = rand(20,1); x = [4 5 6 9]; for ii=1:4 P.variable(x(ii)) = ii; end ...
대략 13년 전 | 0
답변 있음
load() into workspace?
Why don't you use textread or textscan or fscanf? doc textread doc textscan doc fscanf You can control the type ...
load() into workspace?
Why don't you use textread or textscan or fscanf? doc textread doc textscan doc fscanf You can control the type ...
대략 13년 전 | 0
| 수락됨
답변 있음
Axis date values disappear when datetick is applied to a simple time-series plot
I feel your pain. I used to deal with date on x-axis and it is really a huge, huge pain. I suggest you go to File Exchange and ...
Axis date values disappear when datetick is applied to a simple time-series plot
I feel your pain. I used to deal with date on x-axis and it is really a huge, huge pain. I suggest you go to File Exchange and ...
대략 13년 전 | 1
| 수락됨
답변 있음
cropping satellite image (RGB image)
Unhas, To save the image in high quality, look for the print function doc print You can even set PaperPositionMode....
cropping satellite image (RGB image)
Unhas, To save the image in high quality, look for the print function doc print You can even set PaperPositionMode....
대략 13년 전 | 0
답변 있음
find peaks
Sometimes identifying the noise would be a good start. Try Allan Variance method. Good luck!
find peaks
Sometimes identifying the noise would be a good start. Try Allan Variance method. Good luck!
대략 13년 전 | 0
답변 있음
is it possible aarays in first row and first column of a cell be writen in red or other color?
I think that has something to do with the display of the data rather than the content of the data. What I know is, in GUI, yo...
is it possible aarays in first row and first column of a cell be writen in red or other color?
I think that has something to do with the display of the data rather than the content of the data. What I know is, in GUI, yo...
대략 13년 전 | 0
질문
Simulink Signal and Physical Signal
I am new to Simulink although I'd been using Matlab for a long time. I am planning to use the Simhydraulic package. I have tw...
대략 13년 전 | 답변 수: 1 | 0
1
답변답변 있음
GUI Button with keyboard shortcut
Yes you can, Jan. If you want to do that, you can define the KeyPressFcn by passing the input into a function you created you...
GUI Button with keyboard shortcut
Yes you can, Jan. If you want to do that, you can define the KeyPressFcn by passing the input into a function you created you...
13년 초과 전 | 0
답변 있음
Pushbutton in GUI
I do not know whether you refer to the variables which are executed in pushbutton1 to pass it to pushbutton2 or you want to know...
Pushbutton in GUI
I do not know whether you refer to the variables which are executed in pushbutton1 to pass it to pushbutton2 or you want to know...
13년 초과 전 | 0
| 수락됨
답변 있음
Find similarity between string inputs
The function strcmp is a good start for you to study:- <http://www.mathworks.com/help/techdoc/ref/strcmp.html>
Find similarity between string inputs
The function strcmp is a good start for you to study:- <http://www.mathworks.com/help/techdoc/ref/strcmp.html>
13년 초과 전 | 0
답변 있음
Loading File with Interspersed text and numbers
You want to try fscanf. The documentation: <http://www.mathworks.com/help/techdoc/ref/fscanf.html> One of the examples:- ...
Loading File with Interspersed text and numbers
You want to try fscanf. The documentation: <http://www.mathworks.com/help/techdoc/ref/fscanf.html> One of the examples:- ...
13년 초과 전 | 1
답변 있음
plotting a shadow of an object in Matlab
I don't think it's a very hard thing to do. Just draw a cone with the tip as the light source. Draw 4 lines connecting the light...
plotting a shadow of an object in Matlab
I don't think it's a very hard thing to do. Just draw a cone with the tip as the light source. Draw 4 lines connecting the light...
13년 초과 전 | 0
답변 있음
GUIDE multiple images and variable handling
I am not really clear too about the question. Anyway, displaying answers on the static textbox should look like this:- s...
GUIDE multiple images and variable handling
I am not really clear too about the question. Anyway, displaying answers on the static textbox should look like this:- s...
13년 초과 전 | 1