Valeria Chacon
Followers: 0 Following: 0
Statistica
13 Domande
0 Risposte
RANK
276.670
of 295.467
REPUTAZIONE
0
CONTRIBUTI
13 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
15.38%
VOTI RICEVUTI
0
RANK
of 153.912
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
How can I change this loop to a switch loop?
width=input('Enter a positive number: '); disp(' '); while width<0 width=input('Enter a positive number: '); ...
circa 8 anni fa | 0 risposte | 0
0
risposteDomanda
Why isn't my graph plotting?
N=4; R=2; Phase=pi/4; theta=zeros(1,N); x1=R*cos(theta+Phase)/sqrt(2); y1=R*sin(theta+Phase)/sqrt(2); ...
circa 8 anni fa | 1 risposta | 0
1
rispostaDomanda
How can I graph this matrix?
theta=zeros(N,N); theta = mod(bsxfun(@plus, (1:N), (1:N).'),2); x1=(R*cos(theta+Phase)/sqrt(2)); y1=(R*si...
circa 8 anni fa | 1 risposta | 0
1
rispostaDomanda
how to do a loop for a number to determine what color to use?
theta=zeros(N,N); theta = mod(bsxfun(@plus, (1:N), (1:N).'),2); In this case, N is the input that the user chooses. At ...
circa 8 anni fa | 1 risposta | 0
1
rispostaDomanda
How can I sum up two indices to then change the value of the sums that are even?
theta=zeros(N,N); index=(mod(theta,2)==0) N in this case is any number inputed by the user. N is the dimensions of a mat...
circa 8 anni fa | 1 risposta | 0
1
rispostaDomanda
How to add more squares on the checkerboard inscribed inside of a circle
width=input('Enter a positive number: '); disp(' '); while width<0 width=input('Enter a positive number: ');...
circa 8 anni fa | 0 risposte | 0
0
risposteDomanda
Playing sound one after another, according to number inputed
if I have multiple sounds that already have specific tones and they're named: y0,y1,y2,y3,y4,y5,y6,y7,y8,y9 how can I make th...
circa 8 anni fa | 2 risposte | 0
2
risposteDomanda
how to play sound one after the other depending on the number inputed
prompt = 'Enter atleast 10 numbers: '; str='0'; while length(regexp(str,'\d'))~=10 str = input(prompt,'s'); end ...
circa 8 anni fa | 0 risposte | 0
0
risposteDomanda
making the string into a matrix
N=length(str); count=1; for k=1:N m=str2double(str(k)); if isnan(m)==0 str(count...
circa 8 anni fa | 1 risposta | 0
1
rispostaDomanda
after removing characters out of my string, how can I put the numbers in a matrix
prompt = 'Enter atleast 10 numbers: '; str='0'; while length(regexp(str,'\d'))~=10 str = input(prompt,'s'); end ...
circa 8 anni fa | 2 risposte | 0
2
risposteDomanda
separating strings one by one
N=length(str); count=1; for k=1:N x=str2double(str(k)); if isnan(x)==0 str(count)=x(k); ...
circa 8 anni fa | 1 risposta | 0
1
rispostaDomanda
Separating numbers and characters from input
If a user inputs a random amount of characters For example: str=input(prompt,'s'); and they input: 123wd57ab934bd3 how can ...
circa 8 anni fa | 1 risposta | 0
1
rispostaDomanda
how to only have a certain amount of numbers in an input of as many characters and number that the user wants
prompt = 'Enter atleast 10 numbers: '; str=0; str = input(prompt,'s'); while length(str)~=10 str = input(promp...
circa 8 anni fa | 1 risposta | 0