Community Profile

photo

the cyclist


Alden Scientific

Last seen: Today Active since 2011

Head of Modeling and Statistics at Alden Scientific. Obsessive runner. Professional Interests: Predictive modeling, statistics. (I don't respond to email via author page, but will usually look at a question if you send me a link to it.)

Programming Languages:
Python, R, MATLAB, SQL
Spoken Languages:
English
Pronouns:
He/him

Statistics

All
  • Treasure Hunt Participant
  • Scavenger Finisher
  • Editor's pick for Answers
  • Master
  • Likeable
  • Famous
  • First Review
  • First Submission
  • Thankful Level 5
  • 36 Month Streak
  • Revival Level 3
  • Knowledgeable Level 5

View badges

Content Feed

Answered
for loop jump an element of an array
You should not use strict equality to compare floating point numbers. Instead, check equality with a small tolerance, e.g. if ...

ongeveer 23 uur ago | 0

Answered
how to build a magic matrix manually of even n*n matrix?
The method that MATLAB uses to build magic squares is evident if you enter type magic at the command line.

2 dagen ago | 0

Answered
How to place the x axis pointing downward and the y axis horizontally?
I'm not 100% certain I understand, but here are steps toward what I think you want. Use some or all of them. First version, I a...

2 dagen ago | 0

Answered
how to build a magic matrix manually of even n*n matrix?
Yours is an algorithm question, not a MATLAB question. You can find an algorithm for both singly-even and doubly-even magic squ...

3 dagen ago | 0

Answered
how to fill circle markers with crosses?
I'm guessing it's a bit sloppy for your purposes, but one can overstrike plots with two markers: rng(31) x = rand(7,1); y = r...

3 dagen ago | 2

Answered
why do i get 'off', 'Octave:abbreviated-property-match' error warning in eeglab?
The fact that you reached line 202 presumably means you are in an Octave environment, not a MATLAB environment. (I'm guessing th...

4 dagen ago | 0

Answered
model spec 'polyijk' o=in fitlm does not work as per MATLAB documentation?
I think you are just misinterpreting the Wilkinson notation of the model spec in the output. x1*x2 % note the * for interaction...

7 dagen ago | 0

| accepted

Answered
Plotting 3D functions
You used exp as if it were a constant (e) that is raised to a power. Instead, you should have used it as a function. You also u...

9 dagen ago | 1

| accepted

Answered
How to calculate center of pressure given a 2d array containing pressure data
If the answers to both of the questions in my comment is "yes", then % Example input pressureArray = [1 2 3; 4 5 6; ...

15 dagen ago | 0

| accepted

Answered
Weird question about the editor...
The line you are talking about is referred to as the "right-hand text limit". You can adjust some properties for it under MATLAB...

19 dagen ago | 1

| accepted

Answered
Error occurred in fitlm function.
@Walter Roberson surmised correctly, as usual. The fitlm function cannot be used when you have multiple dependent variables. Yo...

23 dagen ago | 0

Answered
how to convert table to cell to acess data?
The syntax rcs=M(:,4) will give a one-column table. The syntax rcs=M{:,4} will give a column of data of the class that is s...

24 dagen ago | 0

| accepted

Answered
Solving an array without for loops
Your question is stated abstractly enough that it is difficult to give specific advice (at least for me). I think it is possibl...

24 dagen ago | 0

Answered
Why am I getting the error "Too many output arguments"?
You are confusing MATLAB by using error (a MATLAB function) as a variable name. I changed that variable name to errorVal, and i...

25 dagen ago | 1

| accepted

Answered
problem with low infinite number
Because their floating-point representations are not exactly equal. You can see that they are not quite equal: load("matlab_Ed...

25 dagen ago | 1

Answered
Find a weight matrix and bias which performs the following binary classification
Some MATLAB functionality is not included in basic MATLAB, and you need to purchase a separate "toolbox". The hardlim function i...

27 dagen ago | 0

Answered
Extract regexp tokens with regexpPattern
I realize that this is not really an answer to your question, but I just wanted to make sure you are aware that one option is to...

28 dagen ago | 0

Answered
Blurry Plots -- Using Mac
There are so many possibilities here, and you haven't really provided any specific info except that you are on a Macbook (and or...

ongeveer een maand ago | 0

Answered
Showing information on a plot
You should be able to get everything you want, using the following commands: title, xlabel and ylabel for the title and axes la...

ongeveer een maand ago | 0

Answered
How to do uneven 2 way anova
The documentation for anovan has an example for two-way ANOVA for unbalanced design.

ongeveer een maand ago | 0

Answered
Create confusion matrix from LDA model
The ClassificationDiscrimant class has a predict function. You can input the predicted and actual labels into the confusionchart...

ongeveer een maand ago | 0

| accepted

Answered
Statistical summaries for each categories in table display
This is the Variable Editor view in the MATLAB "New Desktop", which is in beta development. You can try it by clicking on the "...

ongeveer een maand ago | 1

| accepted

Question


Figures from code executed on Answers are tiny
When I run code here at Answers, generated figures are now much, much smaller than they used to be. (I can't remember how long t...

ongeveer een maand ago | 1 answer | 0

1

answer

Answered
Scattered Interpolant in matlab
No, according to the documentation for scatteredInterpolant, the available extrapolation methods are 'nearest', 'linear', or 'n...

ongeveer een maand ago | 0

Answered
ANOVA for linear mixed-effects models produces misleading main effects
I think it is easier to interpret the estimated model coefficients if you write out all terms for both groups, in the following ...

ongeveer een maand ago | 1

Answered
Find fractional exp. root
I assume your equation is 1/s + 1/(s+3) + 1/(s+10) = 0 There are a couple different ways: % With the Symbolic Math Toolbox s...

ongeveer een maand ago | 0

| accepted

Question


MATLAB figure with transparent background into Google Slides
I am able to save a MATLAB figure with a transparent background, in EPS format. But Google Slides will not import an EPS file. ...

ongeveer 2 maanden ago | 1 answer | 0

1

answer

Answered
Does Matlab perform optimization better than python?
Disclaimer: I barely qualify as a Python programmer. I don't know of any benchmarking specifcally in optimization problems. I'v...

ongeveer 2 maanden ago | 0

Answered
I have "step" data and I want value only on the steps
I am not sure how you want to define the "plateau" value, since the displacement moves both up and down. Can you just use the un...

ongeveer 2 maanden ago | 0

Answered
Error using fitrm function classreg.regr.FormulaProcessor>parseStr
I agree with @Harald, that a linear mixed effects model is likely a good choice here: load("data.mat","data") modelspec = 'X ~...

ongeveer 2 maanden ago | 1

| accepted

Load more