Statistica
18 Domande
0 Risposte
RANK
38.197
of 295.527
REPUTAZIONE
1
CONTRIBUTI
18 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
5.56%
VOTI RICEVUTI
1
RANK
of 154.057
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
Feeds
Domanda
can someone debug this code/function ?
function f = lion(x,A,r1,r2) y = A\r1; z = A\r2; f = (y(1)*x.^2 + y(2)*x).*cos(z(1)*x + z(2)); return; A, r1 a...
circa 8 anni fa | 0 risposte | 0
0
risposteDomanda
Can someone help me implement a function that takes in a date string that has the form 'm/d/y' that produces the full name of the date string ex: 'march 3,1956'
I kinda dont know where to start on this one.
circa 11 anni fa | 1 risposta | 0
1
rispostaDomanda
Can help me create a selection sort function? I understand how it works but I cant come up with a code that works.
here is what i have function y = Mekuluselect(x) n = length(x); C = 0; S = 0; for k = 1:n C = C + 1; m = k; ...
circa 11 anni fa | 1 risposta | 0
1
rispostaDomanda
I am trying to write a program that compares the selection sort function, the bubble sort and insertion sort. I am struggling on the selection sort I know how it works but I cant come up with a code.
At the end I have to write a program that compares the three sorting methods I am using extra output C(number of comparisons) an...
circa 11 anni fa | 0 risposte | 0
0
risposteDomanda
Can someone help implement the perfect shuffle function?
function outString = perfectMShuffle(inString,m) % This function shuffles the characters in the inString by picking 1st, ...
circa 11 anni fa | 1 risposta | 0
1
rispostaDomanda
My goal here is to decode an encrypted message using perfect-k-shuffles, the encryption key is given
here is what I have so far, I dont know how I am supposed to decode the message encodedString = 'aasfu aic talputte bal...
circa 11 anni fa | 0 risposte | 0
0
risposteDomanda
I am trying to implement a selection sort function
what I got is a little too messy I want a more concise code for selection sort function [y,TotalC,TotalS] = selectSort(x) ...
circa 11 anni fa | 0 risposte | 0
0
risposteDomanda
I am trying to decode an encrypted message
Here are the files that I have to use. % First file encodedString = 'aasfu aic talputte balde'; encryptionKey = [...
circa 11 anni fa | 1 risposta | 0
1
rispostaDomanda
I am trying to plot the value of the function P(x,y) along the line segment that connects (0,0) and (6,4)
P(x,y) = 100*exp(-.4*( (x-1)^2 + 0.7*(y-3)^2))+ 80*exp(-.2*(2*(x-5)^5+1.5*(y-1)^2)); so I am going to use the plot(x.y) functio...
circa 11 anni fa | 1 risposta | 0
1
rispostaDomanda
I am trying to implement this function so that it returns the sum of all the values in the m-by-n matrix A without using the buit in function sum
function s = totalsum(A) %A is an m-by-n matrix %s is the sum of all the values in A I dont know where to start.
circa 11 anni fa | 1 risposta | 0
1
rispostaDomanda
i am trying to write a script that estimates the probability for which two dice have the same values when three dices are rolled.
I know for sure that we will use rand() to generate multiple throws but how do I compute the probability
circa 11 anni fa | 0 risposte | 0
0
risposteDomanda
what is the probability that when three dice are rolled, at least two of the dice have the same value? what is the probability that the value of the third dice roll is strictly between the values of the first two rolls? use simulation to estimate
I know for sure that I am going to use rand() to simulate the throws but how do I compute the probilities?
circa 11 anni fa | 3 risposte | 0
3
risposteDomanda
I am trying to draw a tennis court with a green court and white lines
How do i pull that off using functions??
circa 11 anni fa | 1 risposta | 1
1
rispostaDomanda
I am supposed to implement the following function without loops. function L = polyline(u,v) % u and v are column (n+1)-vectors with u(1) = u(n+1) and v(1) = v(n+1). % L is the perimeter of the polygon with veritices (u(1),v(1)),...(u(n),v(n))
I am supposed to use vectorized arithmetic. of z is a length-5 vector then alpha = sum(abs(z(1:4)-z(2:5))). Here is what I go...
circa 11 anni fa | 1 risposta | 0
1
rispostaDomanda
How do I plot the number of iterations of a function using Semilogx?
I have no clue how to do this
circa 11 anni fa | 1 risposta | 0
1
rispostaDomanda
I am trying to write a script that generates a list of 100 integers selected randomly from the set {-20,-10,0,10,20,30}
How do I use the randomness funtion in this problem??
circa 11 anni fa | 3 risposte | 0
3
risposteDomanda
Can someone help me? I am trying to print a 8-by-8 checkboard with red and black tiles
I know that am gonna use two nested for loops.
circa 11 anni fa | 2 risposte | 0
2
risposteDomanda
Does someone know how to print a square onto the command window using for loops????
for 1:5 fprintf('*') % am stuck right there
circa 11 anni fa | 3 risposte | 0