Réponse apportée
smoothing unevenly spaced data
when you say unevenly spaced, do you have the time information? You can try resample them using some interpolation method: ...

plus de 13 ans il y a | 0

Réponse apportée
Adjusted Rsquared in GeneralizedLinearModel Class
Hi Peter, It is the same as Generalized R^2: http://en.wikipedia.org/wiki/Coefficient_of_determination#Generalized_R2 You ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Java Heap Memory on Mac OS X
I think the limit is a 1/4 of your total RAM or memory. Are you referring to the same machine? Your windows machine probably has...

plus de 13 ans il y a | 0

Réponse apportée
How can I model a delay differential equation in simulink?
You can use the delay block: http://www.mathworks.com/help/simulink/slref/delay.html For the rest you just need integrator...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
How to conserve the "Editor Window" - R2012b
Hi Vincent that is not possible in the current release. The best workaround is for you to keep a file open or put something in s...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Open (but no run) a *.m file via drag and drop - R2012b
I am not sure there is a documented way of doing that. But if you already have the editor open and if you drag it into the edito...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Index exceeds matrix dimensions at buffer function
>> clear and start fresh, There could be a conflict in the name of the variable vs name of the function

plus de 13 ans il y a | 0

Réponse apportée
How to exit a GUI program?
>> close all force Well depends on what you want exactly, but after exist if you feel there are some hidden figures or some r...

plus de 13 ans il y a | 8

| A accepté

Réponse apportée
save a cell matrix as csv format
The following solutions page answers this exact questions: http://www.mathworks.com/support/solutions/en/data/1-1CCMDO/index....

plus de 13 ans il y a | 0

Réponse apportée
Why do some commands run faster or slower in the command line than an M.file?
In general in a MATLAB file the JIT has the opportunity to preallocate memory and perform other run time optimization. You will ...

plus de 13 ans il y a | 1

Réponse apportée
OS X java update causes Matlab Parallel Computing Toolbox to break
Here is a link to a bug report. This is a different java release, but may be applicable to the issue you are facing: http://w...

plus de 13 ans il y a | 0

Réponse apportée
Why the result of (1-0.6667)==0.3333 is zero in MATLAB? how can I get one?
That is because they are not the same. >> t-0.3333 ans = 5.55111512312578e-17 They can be equal by s...

plus de 13 ans il y a | 1

Réponse apportée
Deleting rows and columns of all zeroes in a symbolic matrix
The following worked perfectly fine for me. Can you share the exact error message you got? x = [1 1 0;0 0 0;0 1 0] >...

plus de 13 ans il y a | 0

Réponse apportée
How to know clearly about the xPC Target system?
Your first stop should be the product page: http://www.mathworks.com/products/xpctarget/ You will find videos demos and ot...

plus de 13 ans il y a | 2

Réponse apportée
sendmail.m and Microsoft Exchange Server
Have you looked through this documentation page? http://www.mathworks.com/help/matlab/import_export/sending-email.html

plus de 13 ans il y a | 0

Réponse apportée
Implement a Gaussian filter with its variance σ as a user input...
Since this is standard functionality, you can expect that someone has already implemented this and shared this in File Exchange:...

plus de 13 ans il y a | 0

Réponse apportée
Play recorded video on gui and take frame from it
xyloObj = VideoReader('xylophone.mpg'); read(xyloObj, frameNumber); Example from documentation: http://www.mathworks.co...

plus de 13 ans il y a | 0

Réponse apportée
Leave one out Help
Sunil, if you have the Statistics Toolbox you can use 'crossval' to perform leave one out cross validation: http://www.mathwo...

plus de 13 ans il y a | 0

Réponse apportée
the webinar "Medical Image Processing"
Vinny, webinar files are usually are posted on matlab file exchange. If you don't find it there feel free to mail the presenter ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
MPC for a non-system
MPC can be used to control a non linear plant, because the control output is computed at each time step based predicted plant ou...

plus de 13 ans il y a | 0

Réponse apportée
using matlab for artificial neural network in medicine
If you are interested in books about neural networks that use MATLAB, then check out the book program list: http://www.mathwo...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
What does the operator "~=" mean?
something(somthing_else)=0; In MATLAB refers to logical indexing and assignment. In this case somthing_else has to be logical...

plus de 13 ans il y a | 4

| A accepté

Réponse apportée
error in betarnd function
This is indeed a bug in betarnd which existed in releases prior to MATLAB R2011a. If you _are_ using an older release you are...

plus de 13 ans il y a | 0

Réponse apportée
How can I import data from a .hpf file
I think this is what you are looking for: http://www.delsys.com/KnowledgeCenter/NetHelp/default.htm?turl=HTMLDocuments%2Fexam...

plus de 13 ans il y a | 0

Réponse apportée
how to define target for my neural network problem
Your targets are positives or negatives. Which means you can create a vector of 1s or 0s to represent positives or negatives.

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
SVMTRAIN - LEAST SQUARE METHOD OR QUADRATIC PROGRAMMING METHOD
QP solves the quadratic optimization using the Hessian. In a quick sentence, the advantage is that it is higher in precision and...

plus de 13 ans il y a | 1

Réponse apportée
Example code for fmincon error.
myfun is you objective function, you shouldn't run that. Create the definition of myfun into a separate file called myfun.m: ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
receiving email in matlab
You can use ActiveX to open a connection to Outlook as follows: http://www.mathworks.com/support/solutions/en/data/1-RTY6J/ ...

plus de 13 ans il y a | 0

Réponse apportée
How to represent the function "argmin" in matlab?
Can you elaborate? argmin means 'argument of the minimum' of a function. Which means you want to perform an optimization. C...

plus de 13 ans il y a | 0

Réponse apportée
Accessing the folder in Parent Directory
If you are in: E:\Bless\Project\TESTING\ You can try the following without using the absolute path: load('..\LEARNING\my...

plus de 13 ans il y a | 2

| A accepté

Charger plus