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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 2

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

alrededor de 11 años hace | 1

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

alrededor de 11 años hace | 0

| aceptada

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

| aceptada

Respondida
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)),...

alrededor de 11 años hace | 2

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

alrededor de 11 años hace | 2

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

alrededor de 11 años hace | 2

Pregunta


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

alrededor de 11 años hace | 4 respuestas | 3

4

respuestas

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 1

| aceptada

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

Respondida
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); ... ...

alrededor de 11 años hace | 0

| aceptada

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

alrededor de 11 años hace | 0

| aceptada

Respondida
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, ...

alrededor de 11 años hace | 2

| aceptada

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

alrededor de 11 años hace | 2

Respondida
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

alrededor de 11 años hace | 0

| aceptada

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

alrededor de 11 años hace | 0

| aceptada

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

alrededor de 11 años hace | 1

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

Respondida
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'...

alrededor de 11 años hace | 1

| aceptada

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

alrededor de 11 años hace | 0

Pregunta


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

alrededor de 11 años hace | 2 respuestas | 0

2

respuestas

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

más de 11 años hace | 1

| aceptada

Cargar más