the cyclist - MATLAB Central
photo

the cyclist


Alden Scientific

Last seen: 5 días hace Con actividad desde 2011

Followers: 4   Following: 0

Mensaje

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

Estadística

All
MATLAB AnswersCodyFile ExchangeZoom OutFrom 01/11 to 03/25Use left and right arrows to move selectionFrom 01/11Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

49 Preguntas
5.308 Respuestas

File Exchange

1 Archivo

Cody

24 Problemas
303 Soluciones

CLASIFICACIÓN
15
of 297.569

REPUTACIÓN
15.554

CONTRIBUCIONES
49 Preguntas
5.308 Respuestas

ACEPTACIÓN DE RESPUESTAS
73.47%

VOTOS RECIBIDOS
2.939

CLASIFICACIÓN
10.285 of 20.459

REPUTACIÓN
58

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
1 Archivo

DESCARGAS
5

ALL TIME DESCARGAS
585

CLASIFICACIÓN
509
of 159.178

CONTRIBUCIONES
24 Problemas
303 Soluciones

PUNTUACIÓN
3.493

NÚMERO DE INSIGNIAS
10

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Treasure Hunt Participant
  • Scavenger Finisher
  • Editor's pick for Answers
  • Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • First Review
  • First Submission
  • Thankful Level 5
  • 36 Month Streak
  • Revival Level 3
  • Knowledgeable Level 5

Ver insignias

Feeds

Respondida
Shapley based feature selection
The Shapley values don't require the class labels (i.e. the actual responses) to determine feature importance. The Shapley valu...

14 días hace | 1

| aceptada

Resuelto


Project Euler: Problem 4, Palindromic numbers
A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 ...

18 días hace

Resuelto


Project Euler: Problem 3, Largest prime factor
The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number being input, input might be ui...

18 días hace

Resuelto


Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...

18 días hace

Resuelto


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

18 días hace

Resuelto


Word Counting and Indexing
You are given a list of strings, each being a list of words divided by spaces. Break the strings into words, then return a maste...

18 días hace

Resuelto


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

18 días hace

Resuelto


Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...

18 días hace

Resuelto


Converts numbers into characters
Converts numbers into characters

18 días hace

Resuelto


Find the max element of the array
Find the max element of the array

18 días hace

Resuelto


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

18 días hace

Resuelto


Calculate the average value of the elements in the array
Calculate the average value of the elements in the array

18 días hace

Resuelto


to the 2 all elements
to the 2 all elements

18 días hace

Resuelto


the average value of the elements
Calculate the average value of the elements in the array

18 días hace

Resuelto


Double all elements in the array
Duplicate all elements in the array

18 días hace

Resuelto


calculate the length of matrix
input 1 array, calculate the length

18 días hace

Resuelto


Draw a '0' in a one matrix!

18 días hace

Resuelto


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

21 días hace

Resuelto


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

21 días hace

Resuelto


Return area of square
Side of square=input=a Area=output=b

21 días hace

Resuelto


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

21 días hace

Resuelto


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

21 días hace

Resuelto


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

21 días hace

Respondida
Preserving More Decimal Places When Importing Excel Files with readtable in MATLAB
All decimal places are retained for me ... % Change the format format long % Read the file r = readtable("Lab.xlsx"); % H...

2 meses hace | 0

Respondida
How to get MPE (Mean Percentage Error) with plsregress
The documentation doesn't seem to indicate any way to change the metric that is optimized. (This is unsurprising to me.) I can ...

2 meses hace | 0

| aceptada

Respondida
Why is bootci giving different interval than prctile?
Because your prctile calculation should be ci = prctile(bootstat, [(alpha/2)*100,(1-(alpha/2))*100]);

3 meses hace | 1

Respondida
Tiling stacks of boxplots. Each stack contains 5 boxplots
Would subplot(2,5,1) ... subplot(2,5,10) do what you want? Also, I would highly recommend using tiledlayout over subplot. It ta...

4 meses hace | 0

Respondida
how to apply PCA over 6000x82 data
Take a look at this answer of mine which is effectively a tutorial on the MATLAB pca function.

4 meses hace | 1

| aceptada

Respondida
Why is pagemtimes slower than just coding up the matrix multiplication?Especially on GPU.
It seems to me that the two functions are not calculating the same thing, based on the size of their respective outputs: rng ...

5 meses hace | 1

Respondida
SVM Fitcsvm() thresholds vs ROC curve thresholds
fitcsvm() fits the best possible SVM to the data. That function itself does not make the predictions. The resulting model objec...

5 meses hace | 0

Cargar más