A répondu
Launching Matlab 2012a for Linux 32-bit using VPN? Licensing error: -15,570. System Error: 115
It sounds like you cannot connect to the license server. Is the VPN setup correctly? Does your terminal make use of the VPN? Is ...

presque 11 ans il y a | 0

A répondu
Allow Question Markup Capability with fewer Reputation Points
The Answers interface does not provide a mechanism to role back edits, making "editor" powers to powerful in my opinion. I broug...

presque 11 ans il y a | 2

A répondu
is there any command to find a maximum value of a matrix containing negative numbers also ??
What about sqrt(max(x(:).^2))

presque 11 ans il y a | 1

A répondu
MATLAB help always showing true to if condition
The strcmp function requires an exact match. We can define a simple test function to see if a string is either exactly 'Hi' or e...

presque 11 ans il y a | 0

| A accepté

A répondu
Find out OS language via datestr command?
You probably can, but it seems really silly to try. On Linux you can do ! echo $LANG For Windows, I don't know an easy ...

presque 11 ans il y a | 0

A répondu
How to store string into an array?
You cannot access a string with |y(1)| easily. The problem is that your data is a character array and not a string array. This m...

presque 11 ans il y a | 0

A répondu
combine two regexprep into one
I have no idea what you are trying to do. My regex foo is weak, but I am pretty sure for your example you can just replace both ...

presque 11 ans il y a | 0

| A accepté

A répondu
create a new array without nan
Starting with some dummy data x = [[randn(10, 2), nan(10, 6)]; [randn(10, 2), randn(10, 6)]]; x = x(randperm(length(x)),...

presque 11 ans il y a | 2

A répondu
What functions can benefit from simple patching?
In my opinion the tex function could benefit from a simple patch to allow custom packages and classes to be used. The patch is t...

presque 11 ans il y a | 2

A répondu
What functions can benefit from simple patching?
In my opinion the subplot function could benefit from a simple patch. There are currently 64 submissions to the <http://www.ma...

presque 11 ans il y a | 2

Question


What functions can benefit from simple patching?
This <http://www.mathworks.com/matlabcentral/answers/77836-can-i-modify-files-with-copyrighted-by-the-mathworks question> made m...

presque 11 ans il y a | 4 réponses | 3

4

réponses

A répondu
Different commands for strutures and "regular" matrices
Maybe a function like myfun = @(x, ii)subsref(reshape([x(:).Data], size(x(1).Data, 1), size(x(1).Data, 2), length(x)), st...

presque 11 ans il y a | 0

A répondu
How to tell if there are at least 5 consecutive entries in one 8-by-1 matrix with 8 integers?
As people are giving answers, I am pretty confident that not(isempty(strfind(diff(sort(unique(x))), ones(1, 4)))) works...

presque 11 ans il y a | 1

| A accepté

A répondu
One figure with two graphics in different colormaps
MATLAB figures can only have a single colormap. One option is to define your own color map which concatenates the two desired co...

presque 11 ans il y a | 0

A répondu
How to call consecutive variables from workspace
I am a little lost about what your question is, but I think you are saying that working with variables called H1, H2, H3, ..., H...

presque 11 ans il y a | 0

A répondu
plot & errorbar: does exist a function that plot many series of data with error bars?
The simplest way is probably plot(X1,Y1); errorbar(X1,Y1,errors1); plot(X2,Y2); errorbar(X2,Y2,errors2); ... ...

presque 11 ans il y a | 0

| A accepté

A répondu
How to plot with plotconfusion into subplots?
The code for |plotconfusion| is available. It doesn't support an axis handle argument and does not plot into the current axis, r...

presque 11 ans il y a | 0

| A accepté

A répondu
Puzzling syntax: 2:4:6:8:10:12
The documentation lists the colon operator as having the 6th highest precedence and says that _Within each precedence level, ...

presque 11 ans il y a | 2

| A accepté

A répondu
Nesting parentheses issue: any workaround?
Based on some of your comments to the original question and answers, it seems the "solver" is a custom function that you (or som...

presque 11 ans il y a | 2

A répondu
Insert a colorbar into a plot, destroys image with too many numbers?
I am guessing this is a duplicate of http://www.mathworks.com/matlabcentral/answers/53874

presque 11 ans il y a | 0

| A accepté

A répondu
Class inheritance from fi objects
I am not sure you can. It looks like the |fi| object is setup with the old style OO framework. The |fi| function calls |embedded...

presque 11 ans il y a | 0

| A accepté

A répondu
How to normalize audio input?
The |wavrecord| function does not do the scaling but rather the recsnd function handles the scaling. The recsnd function is/was ...

presque 11 ans il y a | 1

A répondu
Changing lower bound of an array
I believe with a huge amount of work overloading some of the key functions (e.g., subsref and subsasgn) you can probably achieve...

presque 11 ans il y a | 0

A répondu
Font size problem in 2-D plots
See this question http://www.mathworks.co.uk/matlabcentral/answers/1238-font-size-changes-in-figures

presque 11 ans il y a | 0

A répondu
Matlab 2013a installation error
TMW provides free installation help and you should contact them directly. Are you using the graphical installer? Are you sele...

presque 11 ans il y a | 0

A répondu
amplitude of a pink noise wave file
You probably do not want the mean unsigned amplitude, but rather the root mean square amplitude. Talking about an unreferenced d...

presque 11 ans il y a | 0

A répondu
Using RegEx (strrep) on CharArray with For Loop
What about datestr(['2007-04-22 01:04:21.000';'2007-05-10 01:08:48.000';'2007-06-15 22:03:31.000'], 'yyyy/mm/dd HH:MM:SS'...

presque 11 ans il y a | 1

| A accepté

A répondu
How can I install MATLAB 5.3 onto a 64-bit computer?
Given performance is clearly not a concern if you are running a pre JIT version, why not just create a 32-bit virtual machine th...

presque 11 ans il y a | 0

Question


Activating on Linux without eth0
I have an activation question. I have asked technical support, but I thought I would ask here. I thought this would be desirable...

presque 11 ans il y a | 2 réponses | 0

2

réponses

A répondu
oop: how to switch between passing by reference and value
The documentation is pretty sparse, but also there: http://www.mathworks.co.uk/help/matlab/matlab_prog/copying-objects.html#brul...

presque 11 ans il y a | 1

| A accepté

Charger plus