Respondida
Insert legend in a for loop
Move your legend command outside the loop ... for i=1:length(fieldnames(Data)); plot(Data.(Name{i}),'Color',cmap(i,:)...

más de 14 años hace | 0

| aceptada

Respondida
output of evalc
It seems that evalc(['dir(', FilePath. ')']) should go faster than D = dir(FilePath); since the evalc method onl...

más de 14 años hace | 0

| aceptada

Respondida
Calculating standard deviation from a confidence interval?
I don't think you can. The standard deviation is going to depend on the distribution of the observations much more so than the c...

más de 14 años hace | 0

Respondida
error in for loop
Doing things like: F=OriginalData F1=F(:,1); F2=F(:,2); F3=F(:,3); F4=F(:,4); F5=F(:,5...

más de 14 años hace | 0

Respondida
error in performing summation
I am guessing that if x is your answer that you want to have many values that you are doing something like x = calc(a,b,c,i) ...

más de 14 años hace | 0

Respondida
IIR filter, highpass, type butterworth
Have you tried looking at doc buttord doc butter What type of inputs are they expecting? How does that relate to wha...

más de 14 años hace | 0

Respondida
I want to plot PSD for my input data
You should try doc psd It gives a pretty good explination.

más de 14 años hace | 0

Respondida
Configire 'local' to run on more than 4 workers
What version of MATLAB are you running? In R2011b the local scheduler supports up to 12 workers. I think some earlier versions o...

más de 14 años hace | 1

Respondida
How to remove outliers?
If you haven't thought about how you are going to deal with outliers before inspecting your data, then don't remove them. If you...

más de 14 años hace | 2

Respondida
Activation error
You best bet is to contact TMW directly: <http://www.mathworks.co.uk/support/install.html?s_cid=global_nav>

más de 14 años hace | 0

Respondida
Cochlear implant
Not sure where this should go. There are many different strategies for cochlear implant processing. I believe the two that are c...

más de 14 años hace | 1

Respondida
/usr/local/MATLAB/R2011a/bin/util/oscheck.sh: 605: /lib64/libc.so.6: not found
It looks like it is documented: http://www.mathworks.co.uk/support/solutions/en/data/1-F68FSA/index.html?solution=1-F68FSA

más de 14 años hace | 0

Respondida
Time delay
20 ms is going to be very difficult to obtain. Your monitor is probably running at 60 Hz or so. You can only refresh data on scr...

más de 14 años hace | 0

Pregunta


Why should I stay?
This may be a rant or a parting message, but I think it really is a question: Why should I continue to participate in MATLAB ans...

más de 14 años hace | 9 respuestas | 15

9

respuestas

Respondida
Recommend the best possible machine for the price.
It sounds like your problem, or at least a large chunk of it, is embarrassingly parallel. If you really can do the analysis with...

más de 14 años hace | 0

Respondida
speech analysing
It is not possible to convert one persons voice to another persons voice. It is hard enough to even characterize what one person...

más de 14 años hace | 0

| aceptada

Respondida
Very slow for loop
You might be able to get a slight performance boost by changing how the memory is acessed ... <http://undocumentedmatlab.com/bl...

más de 14 años hace | 0

| aceptada

Respondida
Problem with Matlab 2011a in Ubuntu 11.04
This might be related to: <http://www.mathworks.com/matlabcentral/answers/1238-font-size-changes-in-figures> On Arch I needed t...

más de 14 años hace | 1

Respondida
times font with latex interpreter
Do you need this for the on screen display or are you exporting the figure? For the latter, I think <http://www.mathworks.com/ma...

más de 14 años hace | 0

Respondida
Plot very large audio files
Why not just get more RAM, 1 GB isn't that big. Otherwise you are either going to have to hack the FEX contribution or write you...

más de 14 años hace | 0

Respondida
How to resolve between @spectrum/psd.m and psd.m?
For ... Hs = spectrum.periodogram; psd(Hs,xn,'Fs',fs,'NFFT',1024,'SpectrumType','onesided') MATLAB knows to call...

más de 14 años hace | 0

| aceptada

Respondida
Getting Multiple responses/input using GetEchoString
Screen('DrawText', wPtr, Response, 650, (Length*150)+40, textBlack) I think you want to concatenate your new Response with ...

más de 14 años hace | 0

Respondida
Quicky. re 'whos' and workspace.
I am not sure why you want to do whos in the base or caller workspace, but my guess is that you might want something like ...

más de 14 años hace | 0

Respondida
speech signal from Microphone USB
Depends what you mean by "same time." There is going to be a few milliseconds of latency. I would look at the MATLAB based port ...

más de 14 años hace | 0

Respondida
Class set methods that access other object properties
It seems reasonable. I have never really understood the reason for the warning (I think it has to do with realoading an object w...

más de 14 años hace | 2

Respondida
alert sound
So here is an absolutely ugly Windows XP hack that gets the SystemExclamation sound from the registry and replaces environment v...

más de 14 años hace | 1

Respondida
alert sound
What about sound(randn(4096, 1), 8192)

más de 14 años hace | 1

| aceptada

Respondida
echo cancellation
While not as clear as it could be I think the question is: "Will you give me MATLAB code for doing echo cancellation with the tm...

más de 14 años hace | 2

Respondida
And function in While loop
If you use & instead of && both parts will be evaluated, even if the first part is false. Although this seems like a waste of ti...

más de 14 años hace | 0

Respondida
Find
x = '14022010_003' y = {'13022010_001' '14022010_003' '15022010_005'} find(strcmp(y,x)) Notice the {} and not...

más de 14 años hace | 0

Cargar más