![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/869884_1523695346278_DEF.jpg)
Programming Languages:
MATLAB, Visual Basic
Spoken Languages:
Arabic, English
MATLAB, Visual Basic
Spoken Languages:
Arabic, English
Feeds
提问
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 ...
12 months 前 | 0 个回答 | 0
0
个回答已回答
How 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...
How 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...
4 years 前 | 2
| 已接受
提问
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...
4 years 前 | 1 个回答 | 0
1
个回答已回答
How 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...
How 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 前 | 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...
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 前 | 0
提问
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 前 | 2 个回答 | 1
2
个回答提问
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 前 | 2 个回答 | 5
2
个回答已回答
very 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....
very 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 前 | 0
提问
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 前 | 4 个回答 | 4
4
个回答提问
Any idea why all([]) is true while any([]) is false
>> all([]) ans = 1 >> any([]) ans = 0
12 years 前 | 2 个回答 | 1