Beantwortet
How to design an algorithm to find the peaks of the histogram and implement it in MATLAB???
doc findpeaks doc histogram doc imhist

mehr als 11 Jahre vor | 0

Beantwortet
run R2014b 32-bit on 64-bit Win7 pro?
Call MathWorks' installation support team!

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 1

Beantwortet
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...

mehr als 11 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 3

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 4

Beantwortet
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?

mehr als 11 Jahre vor | 1

Beantwortet
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...

mehr als 11 Jahre vor | 2

| akzeptiert

Beantwortet
How to plot data with certain time scale from huge data set ?
plot(data(1:1000:end))

mehr als 11 Jahre vor | 0

Beantwortet
"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...

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 1

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

mehr als 11 Jahre vor | 2

| akzeptiert

Beantwortet
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?

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 3

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

mehr als 11 Jahre vor | 3

| akzeptiert

Beantwortet
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 ...

mehr als 11 Jahre vor | 0

Beantwortet
I am facing Georectification error
Those properties were added in R2013b. You'll need to upgrade in order to use them.

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 2

| akzeptiert

Beantwortet
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 ...

mehr als 11 Jahre vor | 0

Beantwortet
Entropy of zipped file
doc unzip doc untar doc gunzip Probably one of these will help.

mehr als 11 Jahre vor | 0

Mehr laden