Réponse apportée
how to write data to xls sheet?
If there're both CHAR data and DOUBLE data, I prefer to use XLSWRITE twice to make it work without extra effort. Here I assume v...

presque 12 ans il y a | 1

Réponse apportée
What correction need in this..? for fuzzy
If you want to use it in a fuzzy logic/control problem, TRAPMF or TRIMF can easily create the function like that. x=0:0.1:1...

presque 12 ans il y a | 0

Réponse apportée
What's the status of 64-bit MATLAB support for ODBC?
Hi, I know little about ODBC, but I found the system requirement page in MathWorks web site: http://www.mathworks.cn/produc...

presque 12 ans il y a | 0

Réponse apportée
Difference between canny,sobel,prewitt edge detection
You can try to use 'doc fspecial' or 'doc edge' to find the description and filters of those operators.

presque 12 ans il y a | 0

Réponse apportée
Is it possible to set watchdogs (memory, exec time) in MATLAB?
Hi, The watchdog for memory in Symbolic Math Toolbox is for Mupad session, which means it's not for MATLAB session. I think t...

presque 12 ans il y a | 1

A résolu


Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...

presque 12 ans il y a

Réponse apportée
Undefined function 'eq' for input
Can you just run 'x=1+1'? If this line is ok. Then there should be something wrong with your variables, what it PooledCov and ot...

presque 12 ans il y a | 0

Réponse apportée
Manually Xtick control by edit field
Hi, You're just trying to change the default XTick position or the XTickLabel? These two is different properties. My sugge...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
getting smaller arrays in sequence from a big array
Hi Suleyman, There're many different ways to achieve what you want. I'm not sure what is the best one for your purpose, which...

presque 12 ans il y a | 1

A résolu


Is my wife right?
Regardless of input, output the string 'yes'.

presque 12 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

presque 12 ans il y a

Réponse apportée
How do I plot a function that consists of a variable depending on x?
Hi, It should be like this: y=@(x) x^3; fplot(y,[-10,10]); or fplot(@(x) x^3,[-10,10]) You need to define the funct...

presque 12 ans il y a | 0

Réponse apportée
Using windows messages to interface with data acquisition
I think if the Windows message is a output of DLL, MATLAB sure can accept the output, but how to activate certain callback using...

presque 12 ans il y a | 0

Réponse apportée
Deployment of a standalone figure editor possible?
This is because there's limitation and restriction to deploy program in MATLAB, one of which is those functions calling 'Tools t...

presque 12 ans il y a | 1

Réponse apportée
Convert (x,y) data into a function y => f(x)
Hi Jaap, I can't fully understand your question. Do you mean you want a lookup table in function form? If so, you can use fittin...

presque 12 ans il y a | 0

Réponse apportée
problem from reading data from a .txt file
Hi, Can you try to use the default setting of FSCANF function? Like A=fscanf(fid,'%g');

environ 12 ans il y a | 0

Réponse apportée
How to listen to changes in a directory
Hi Hans, I don't think there's a handle for a directory, so it won't be possible to notify an event for the change of directo...

environ 12 ans il y a | 1

Réponse apportée
Finding the mean of subsets within cellarrays
Hi, In your code, you can't index into a cell array using ':', and if you want to use the build-in MEAN function, you should...

environ 12 ans il y a | 0