Craig - MATLAB Central
photo

Craig


Applied Research Associates Inc

Last seen: Today Attivo dal 2012

Followers: 0   Following: 1

Messaggio

Statistica

All
CodyMATLAB AnswersFrom 05/12 to 03/25Use left and right arrows to move selectionFrom 05/12Use 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

10 Domande
1 Risposta

Cody

0 Problemi
14 Soluzioni

RANK
9.645
of 297.613

REPUTAZIONE
4

CONTRIBUTI
10 Domande
1 Risposta

ACCETTAZIONE DELLE RISPOSTE
40.0%

VOTI RICEVUTI
2

RANK
 of 20.457

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
23.207
of 159.263

CONTRIBUTI
0 Problemi
14 Soluzioni

PUNTEGGIO
210

NUMERO DI BADGE
3

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 2
  • Explorer
  • First Answer
  • First Review
  • Commenter
  • Speed Demon
  • Solver

Visualizza badge

Feeds

Visto da

Domanda


Confidence levels for glmfit - glmval or fitglm using the Likelihood Ratio method
After several days and many hours of researching and googling, I am unable to determine how I could find confidence levels using...

11 mesi fa | 1 risposta | 0

1

risposta

Domanda


Compute Confidence Interval about q of logistic binary fit
I have results from a binary study. The study was analyzied by others using Gonogo (https://www2.isye.gatech.edu/~jeffwu/sensi...

11 mesi fa | 1 risposta | 0

1

risposta

Domanda


Labelling Curves on a Graph, This code worked a decade ago, but will not work in 2023a
This code worked fine a decade ago, but will not work in 2023a X = [0 1100 1600 2400 2400 2800 3400 3800]; Y = fliplr(X); fig...

circa un anno fa | 1 risposta | 0

1

risposta

Domanda


parfor variable classification issue revisited
I have a million (literally) text files that I need to read a number from. I currently do this in a nested loop as such: len_A...

oltre un anno fa | 2 risposte | 0

2

risposte

Domanda


How to obtain Real and Imaginary parts of symbolic polynomial
I have the below code. I cannot figure out how to obtain the real and imaginary parts of the symbolic polynomial (I have alread...

circa 4 anni fa | 1 risposta | 0

1

risposta

Risposto
How to extract all the rows which match an specific string column
Use: T_dunita = strcmp(T.geol_unit, 'Dunita')

oltre 4 anni fa | 2

Domanda


Optimizing constants applied to multiple vectors with multiple constraints
Hello, I have 6 vectors given below. I would like to find two constants, a and b, such that: 1) the elements of sqrt( (a*U).^2...

quasi 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How to create a penalty function in two dimensions for a profile curve?
Hello, I have a computer model that models a physical process that is represented by the black line shown in the attached figure...

oltre 5 anni fa | 0 risposte | 0

0

risposte

Domanda


Bessel Filter -3dB frequency
The documentation for besself states: "[b,a] = besself(n,Wo) returns the transfer function coefficients of an nth-order lowpass...

quasi 6 anni fa | 1 risposta | 0

1

risposta

Domanda


Need to Rotate Set of 3D Data
Hello I have attached a pdf file with significantly more details, graphs, and explanations. I would like to rotate a 3D set of...

circa 6 anni fa | 1 risposta | 0

1

risposta

Domanda


Vectorized indexing cell array
I have several (5000+) pressure-time histories in a cell array Data. Each cell in the Data array holds a two column vector of t...

quasi 11 anni fa | 0 risposte | 0

0

risposte

Risolto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

quasi 13 anni fa

Risolto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

quasi 13 anni fa

Risolto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

quasi 13 anni fa

Risolto


Is my wife right?
Regardless of input, output the string 'yes'.

quasi 13 anni fa

Risolto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

quasi 13 anni fa

Risolto


Put two time series onto the same time basis
Use interpolation to align two time series onto the same time vector. This is a problem that comes up in <http://www.mathwork...

quasi 13 anni fa

Risolto


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

quasi 13 anni fa

Risolto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

quasi 13 anni fa

Risolto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

quasi 13 anni fa

Risolto


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

quasi 13 anni fa

Risolto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

quasi 13 anni fa

Risolto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

quasi 13 anni fa

Risolto


Add two numbers
Given a and b, return the sum a+b in c.

quasi 13 anni fa

Risolto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

quasi 13 anni fa