Statistiques
7 Questions
0 Réponses
RANG
36 122
of 301 533
RÉPUTATION
1
CONTRIBUTIONS
7 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
1
RANG
of 21 316
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 175 212
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
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...
presque 11 ans il y a | 1 réponse | 0
1
réponseQuestion
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...
presque 11 ans il y a | 1 réponse | 0
1
réponseQuestion
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;...
presque 11 ans il y a | 4 réponses | 1
4
réponsesQuestion
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]
presque 11 ans il y a | 2 réponses | 0
2
réponsesQuestion
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
presque 11 ans il y a | 4 réponses | 0
4
réponsesQuestion
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(...
presque 11 ans il y a | 1 réponse | 0
1
réponseQuestion
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 ...
presque 11 ans il y a | 2 réponses | 0
