Statistica
7 Domande
0 Risposte
RANK
36.122
of 301.583
REPUTAZIONE
1
CONTRIBUTI
7 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
100.0%
VOTI RICEVUTI
1
RANK
of 175.587
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
Loop for T ( T > 10) = 10;
So I was asked in class to do this at home and I am stumped. I have to write a loop that is equivalent to the command T ( T...
quasi 11 anni fa | 1 risposta | 0
1
rispostaDomanda
interleaving arrays of different size
So I made a script that can weave two arrays of the same size x = [1 2 3]; output = zeros(1,2*length(x)); output(1:2:e...
quasi 11 anni fa | 1 risposta | 0
1
rispostaDomanda
Summing the multiples of 3 and 5 under 100
So I'm writing a script that does as the title says i= 1:99; v1 = (rem(i,3) == 0); v2 = (rem(i,5) == 0); v3 = v1 + v2;...
quasi 11 anni fa | 4 risposte | 1
4
risposteDomanda
how to get the even numbers between 2 numbers using a loop
So, for example, between 5 and 13 it would show: [6 8 10 12]
quasi 11 anni fa | 2 risposte | 0
2
risposteDomanda
how to create a 1,12,123,1234 pattern in a triangle
How do I make a pattern from 1:N, Lets say N = 5, so it turns out like this: 1 12 123 1234 12345
quasi 11 anni fa | 4 risposte | 0
4
risposteDomanda
How to get different input, depending on the last input
So I need to make a chatbot script and i'm stuck on this part x = input('+ ', 's'); s={'hey','hi','hello'}; if ismember(...
quasi 11 anni fa | 1 risposta | 0
1
rispostaDomanda
How to make a string == one string in a cell array
I need to make a chatbot for an assignment and im having trouble with this part of the script x = input('+ ', 's'); if x ...
quasi 11 anni fa | 2 risposte | 0
