1
vote
2answers
47 views
MATLAB: filter noisy EKG signal
What is the best filter to use to clear noise from an EKG signal?
3
votes
2answers
44 views
How do I divide matrix elements by column sums in MATLAB?
Is there an easy way to divide each matrix element by the column sum? For example:
input:
1 4
4 10
output:
1/5 4/14
4/5 10/14
1
vote
3answers
27 views
Constants in MATLAB
I've come into ownership of a bunch of Matlab code and have noticed a bunch of "magic numbers" scattered about the code. Typically, I like to make those constants in languages lik …
0
votes
3answers
22 views
UnsatisfiedLinkError When Loading a Library from Java in MATLAB
I've been integrating simple java modules into the MATLAB environment on Windows with some success. Recently I encountered a problem with a third-party library which attempts to lo …
0
votes
1answer
47 views
Equations Solver function in Matlab. How do I handle [eqns,vars] = getEqns(varargin{:}) errors?
I am using Matlab and am using its solve function. I run this code and I keep getting this error
[eqns,vars] = getEqns(varargin{:})
I realized I had some parens issues and fixed t …
3
votes
5answers
168 views
How to add ^ to matlab ?
^ is the exponential operator in matlab. The problem with it is that isn'it isn't present on a lot of non english keyboard layouts, and if you use it a lot in your work, switching …
1
vote
1answer
64 views
Turning y axis upside down in MATLAB
Is there a way to turn the y axis upside down in matlab plots, so that the positive direction of the y axis, instead of up, points down ?
(I beg of you; please do not say, print i …
0
votes
4answers
62 views
Is it possible in matlab to explicitly format the output numbers ?
I know about MATLAB's format long, format short, eng ... and so on. But short and long will always display a predefined number of decimals, with an exponent, and for example, forma …
2
votes
1answer
65 views
MATLAB: Determine total length/size of a structure array with fields as structure arrays
I have a structure array containing fields as structure arrays of varying length. For example:
's' is a structure
'data' is a field in 's', and also a structure array itself
and
…
1
vote
3answers
64 views
Creating “holey” median filter in Matlab
Hi
What I need to do is to create a "special" kind of median filter for image processing in Matlab - the "holey" median filter. This is a filter that excludes the element at the c …
1
vote
2answers
107 views
How do I account for missing data when creating an Excel file in MATLAB?
I had posted a similar question related to plotting data, and now I'd like to know how to handle missing data when outputting data to an Excel file using the XLSWRITE function.
I …
1
vote
1answer
40 views
Matlab-like structure ‘Cell Array’ in Numpy?
i try to use create Cell Array in Numpy, Anyone have an Information ?
8
votes
7answers
423 views
What can Matlab do that R cannot do?
I often hear people complain how expensive Matlab licenses are. Then I wonder why they don't just use R. But is it right? Can you use R to replace Matlab?
5
votes
6answers
199 views
Multiply a 3D matrix with a 2D matrix
Suppose I have an AxBxC matrix X and a BxD matrix Y.
Is there a non-loop method by which I can multiply each of the C AxB matrices with Y?
5
votes
4answers
73 views
How do I compare each element of a row matrix with each element of another row matrix in MATLAB?
I have q = [3 4 5]; and w = [5 6 7];. I want to compare every element of q with w (i.e. 3 compared with 5, 6, and 7). If it matches any element in w (like how 5 is in both q and w) …
