photo

Kylenino Espinas


Last seen: circa 3 anni fa Attivo dal 2020

Followers: 0   Following: 0

Statistica

MATLAB Answers

14 Domande
0 Risposte

RANK
33.636
of 300.763

REPUTAZIONE
1

CONTRIBUTI
14 Domande
0 Risposte

ACCETTAZIONE DELLE RISPOSTE
64.29%

VOTI RICEVUTI
1

RANK
 of 21.082

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 170.923

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 3

Visualizza badge

Feeds

Visto da

Domanda


Trying to find empirical cdf
%Sn = X1 + X2 ... + Xn %Xi's are independent random variables %uniform on the interval [-a,a] a = 1; n1 = 4; n2 = ...

oltre 3 anni fa | 1 risposta | 0

1

risposta

Domanda


Trying to graph a cumulative distributive function with erf function, lost.
%Sn = X1 + X2 ... + Xn %Xi's are independent random variables %uniform on the interval [-a,a] a1 = 1; a2 = 5; a3 = 1...

oltre 3 anni fa | 1 risposta | 0

1

risposta

Domanda


Adding PMF of a binomial to a rng coin flip graph
P = 23/36; n = 10; %amount of flips done 1 million times arr = zeros(1,100); %array to store heads in n flips j = 1; while j...

quasi 4 anni fa | 1 risposta | 0

1

risposta

Domanda


Simulating 10 biased coin flips 100 times
n = 10; %amount of flips done 1 million times arr = zeros(n); %array to store heads in n flips toss = (U < 0.6388888888888); %...

quasi 4 anni fa | 1 risposta | 0

1

risposta

Domanda


Trying to make a piecewise function that isn't for graphing or using the piecewise function itself
function y = project2Tester(x) y = zeros(size(x)); x1 == (x <= -1); y(x1) = log(abs(x)); x2 == (-1 < x & x < 0...

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How would I remove certain values of an array and put it into another array?
function [microbeInd, noLifeInd] = semTest(semData) microbeInd = islocalmax(semData); noLifeInd(microbeInd) = []; end Af...

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How do I create an array with the greatest values from two arrays?
function [semData] = semProcessing(raw1, raw2) if length(raw1) = length(raw2) lg = length(raw1); semData = zeros(1,lg);...

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How do I make this function work for any matrix size?
%How do I change this function so that it works for matrices of any size? function [B] = Matrices(matrice) B = matrice; B...

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How would I use loops to set certain values in a martix to 0?
I want to make a function that turns every value but the values in a diagonal shape for a matrice. function [X] = threeMatrice...

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


Why does my code only come out with one result?
function [siftedData, siftedMean, siftedStd, siftedNorm] = project2(rawData, categories, selectedCategory) rawData(ca...

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


If I have an array with values and then another array with each value's category, how would I remove values with certain categories?
%For example if Data = (1.2, 3.4, 6.7) Category = (1, 4, 1) %How would I remove 1.2 and 6.7 since they each have a cate...

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How do I make the function return values only from the array?
function [selectedValues] = selectRandom( dataSet, numberSelected ) % selectRandom: Return numSel elements of input array data ...

circa 5 anni fa | 1 risposta | 1

1

risposta

Domanda


My function isn't returning an array for an answer with an input array
function [bodyMassIndex] = CalculateBMI(massKg, heightCm) % Define a function CalculateBMI % Input: massKg: Mass in kg % ...

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How do I use an indicator variable to select one of these 4 equations?
var1 = double; var2 = double; indicator = A = var1 * var2; %var 1 and var 2 are the sides Vcylinder = var1 * pi * ...

circa 5 anni fa | 1 risposta | 0

1

risposta