BHANESH BHADRECHA
IIT ROORKEE
自 2015 起处于活动状态
Followers: 0 Following: 0
Professional Interests: signal processing, image processing
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 years 前 | 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 years 前 | 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 years 前 | 28
已回答
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 years 前 | 1