Khaled Hamed
Followers: 0 Following: 0
Water Resources
MATLAB, Visual Basic
Spoken Languages:
Arabic, English
Statistics
RANK
2,786
of 295,569
REPUTATION
21
CONTRIBUTIONS
6 Questions
6 Answers
ANSWER ACCEPTANCE
83.33%
VOTES RECEIVED
12
RANK
4,982 of 20,247
REPUTATION
261
AVERAGE RATING
4.00
CONTRIBUTIONS
2 Files
DOWNLOADS
2
ALL TIME DOWNLOADS
2573
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Error reading netcdf file over internet
The following code runs correctly without errors in online Matlab, Matlab Mobile, and even in this question box (when using the ...
9 months ago | 0 answers | 0
0
answersHow to copy a plot to clipboard programmatically
You have to first copy the plot to an new invesible figure then copy that figure to the clipboard. Check: How can I print only...
3 years ago | 1
| accepted
Question
Default Sum and Max for nan is not consistent
Dear All, Why is the inconsistency of 'sum' and "max' default treatment of NaNs? S = sum(...,NANFLAG) specifies how NaN (Not-A...
3 years ago | 1 answer | 0
1
answerHow can I automatically let Matlab input the file in sequence?
for i=1:1000 [y,Fs] = audioread(['sample' num2str(i) '.wav']); spectrogram(y,'yaxis') saveas(gcf,['sample' num...
4 years ago | 0
How to calculate the transfer function for a 16 input system?
It depends on what type of Transfer Function you want to use. For example, if you want to use an ARX model (I am using random i...
4 years ago | 0
Question
Can You Explain This Weird Behavior
Weird Behavior I came across some weird behavior while writing an m-file. I have managed to isolate the problem as follows: ...
9 years ago | 2 answers | 1
2
answersQuestion
Unexpected behavior of anonymous function
The anonymous function k below behaves correcltly except for the last two cases k(1,1,:) and k(1,2,:), where it interprets the s...
12 years ago | 2 answers | 5
2
answersvery interesting phenomenon about 'loglog semilogy'
You must have had 'hold on' before the loop in order not to overwrite plots. If this is the case, a linear scale is always held....
12 years ago | 0
Silly question regarding plotting of contours
Check help TriScatteredInterp
12 years ago | 0
Question
Is this a Possible MATLAB bug? (Further strange Behavior)
I have encountered a strange behavior while solving one of the problems in Cody. I have simplified the code into the following ...
12 years ago | 4 answers | 4
4
answersQuestion
Any idea why all([]) is true while any([]) is false
>> all([]) ans = 1 >> any([]) ans = 0
12 years ago | 2 answers | 1