Réponse apportée
How to design an algorithm to find the peaks of the histogram and implement it in MATLAB???
doc findpeaks doc histogram doc imhist

plus de 11 ans il y a | 0

Réponse apportée
run R2014b 32-bit on 64-bit Win7 pro?
Call MathWorks' installation support team!

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How to hide sub-options (eg. listbox, edittext) when selecting an option in GUI using GUIDE?
You can set their _'Visible'_ property to _'off'_.

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Can I use tic and toc inside a parfor?
You're better off using this: <http://www.mathworks.com/matlabcentral/fileexchange/27472-partictoc>

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Importing specific rows of Data from Text file
You'll have to use |textscan| which provides an option for skipping rows. If you provide a small file (1000 rows or so) we can ...

plus de 11 ans il y a | 0

Réponse apportée
Superimposing two figures on the top of each other
It's actually there when you plot. Just in the upper left hand corner because that's where the data are located. This will mak...

plus de 11 ans il y a | 0

Réponse apportée
Why does adding a specific directory to Matlab path cause the save function to slowdown?
* The save location is on a network drive *^ This* What happens if you save locally? Network directories on the path, bei...

plus de 11 ans il y a | 0

Réponse apportée
Cell contents reference from a non-cell array object.
Apparently it's not a cell array at that point. Or something else is horribly wrong. This is where debug stop on errors is you...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
how to count number of vehicle in a image
<http://www.mathworks.com/help/vision/examples.html Computer Vision System Toolbox>

plus de 11 ans il y a | 0

Réponse apportée
How do you resolve conflict when multiple toolboxes have functions with the same name?
which -all smooth C:\Program Files\MATLAB\R2015aPre\toolbox\curvefit\curvefit\smooth.m C:\Program Files\MATLAB\R2015aPre...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
What non-built-in functions do you use frequently?
<http://www.mathworks.com/matlabcentral/answers/48658-share-your-favorite-snippet-or-utility> The one I've been using a ton r...

plus de 11 ans il y a | 1

Réponse apportée
Average multiple cells in the same lat and lon
% Remove nans idxKeep = ~any(isnan(A(:,1:3)),2); Akeep = A(idxKeep,:); % Unique combinations of lat/lon and w...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
How should TMW repair this answers flaw?
I agree with a fair amount of what has been said. Here's a "constructive" way for y'all to help. Randy is the main developer...

plus de 11 ans il y a | 3

| A accepté

Réponse apportée
Subdirectories in a custom package
I'd recommend contacting tech support on this one. It's reproducible and no easy workaround other than unpackaging your directo...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Turn off line smoothing (anti-aliasing) in 2014b?
fig = figure; fig.GraphicsSmoothing = 'off'; plot(1:10)

plus de 11 ans il y a | 0

Réponse apportée
How do I find built in sounds?
S(1) = load('gong'); S(2) = load('handel'); sound(S(1).y,S(1).Fs) sound(S(2).y,S(2).Fs) And more help: |audioread|, |aud...

plus de 11 ans il y a | 4

Réponse apportée
Dear sir, I want to know the limits of a large scale linear programming problem that can be solved using MATLAB(i.e., no.of constraints, no.of variables, etc).
How much memory does your 64 bit machine have and how sparse are your constraints?

plus de 11 ans il y a | 1

Réponse apportée
When does DBSTOP not apply to callbacks?
Does |dbstop if caught error| trigger it? It's likely there's a try/catch catching the original exception and thus not throwing...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
How to plot data with certain time scale from huge data set ?
plot(data(1:1000:end))

plus de 11 ans il y a | 0

Réponse apportée
"Undefined function or method 'eq' for input arguments of type 'cell'."
You can't take the max of a cell, it's a container. If you want the max of all of the elements in the cell, use cellfun mx...

plus de 11 ans il y a | 0

Réponse apportée
Running individual matlab scripts in parallel?
doc createJob doc createTask Create one job and then attach the two scripts to it as tasks (slightly lower-level api than...

plus de 11 ans il y a | 1

Réponse apportée
At what line does my parfor loop error?
parfor ii = 1:100 try process_file(ii) catch error(['Error in File ' num2str(ii)]) ...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
Create an animated GIF: My code plots only the first image
It doesn't look like you're actually changing anything in the figure on each iteration. Don't you want to re-plot?

plus de 11 ans il y a | 0

Réponse apportée
overwriting built in function
I would strongly recommend against this for a few additional reasons to what have already been provided. # Other MATLAB funct...

plus de 11 ans il y a | 3

Réponse apportée
Find out file extension of a file from within the file.
You could |fileparts| the output from |which|. [~,~,ext] = fileparts(which(mfilename))

plus de 11 ans il y a | 3

| A accepté

Réponse apportée
The Starting Point (Vector) generated by Genetic Algorithm doesn't satisfy the nonlinear constraint, why?
The |ga| solver may not generate points that are feasible with regard to the nonlinear constraints. This doc page explains how ...

plus de 11 ans il y a | 0

Réponse apportée
I am facing Georectification error
Those properties were added in R2013b. You'll need to upgrade in order to use them.

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Open multiple excel files in loop
Here's a similar example that I have: % Copyright 2014 The MathWorks, Inc. % Automating File Import % Select folder c...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
Using bwlabel() with a structuring element
<http://www.mathworks.com/help/releases/R2014b/vision/examples.html> There are three or four different car tracking examples ...

plus de 11 ans il y a | 0

Réponse apportée
Entropy of zipped file
doc unzip doc untar doc gunzip Probably one of these will help.

plus de 11 ans il y a | 0

Charger plus