![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/5480019.jpg)
BHANESH BHADRECHA
IIT ROORKEE
2015 年からアクティブ
Followers: 0 Following: 0
Professional Interests: signal processing, image processing
統計
MATLAB Answers
0 質問
4 回答
ランク
147,788
of 157,776
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Indexing cannot yield multiple results error
That is because you have created any loop and in that loop variable is changing its value every time loop executes. The best ...
Indexing cannot yield multiple results error
That is because you have created any loop and in that loop variable is changing its value every time loop executes. The best ...
約9年 前 | 0
回答済み
"Insufficient number of outputs from right hand side of equal sign to satisfy assignment."
that is because your output variable name and function name both are same. for example [stft, t, f]= stft(x,wlen,nfft); ...
"Insufficient number of outputs from right hand side of equal sign to satisfy assignment."
that is because your output variable name and function name both are same. for example [stft, t, f]= stft(x,wlen,nfft); ...
約9年 前 | 8
回答済み
How can I reverse the y-axis when I use the IMAGE or IMAGESC function to display an image in MATLAB?
set(gca,'YDir','normal')
How can I reverse the y-axis when I use the IMAGE or IMAGESC function to display an image in MATLAB?
set(gca,'YDir','normal')
9年以上 前 | 30
回答済み
calculating average value for matrix
% suppose name of the matrix is 'm' [a,b]=size(m); s=sum(m); % sum of all columns total=sum(s); ...
calculating average value for matrix
% suppose name of the matrix is 'm' [a,b]=size(m); s=sum(m); % sum of all columns total=sum(s); ...
9年以上 前 | 1