Statistiques
RANG
75 973
of 300 857
RÉPUTATION
0
CONTRIBUTIONS
6 Questions
2 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
0
RANG
of 21 097
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 171 361
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
Switch Case with a range of letters?
OK, I'm just playing with some code. Here's the code: clear, clc; while 1 n = input('Type a Word Starting With a Capital ...
environ 7 ans il y a | 3 réponses | 0
3
réponsesQuestion
if, or or or or or
I'm just wondering if Matlab can string together "or" statements? The current code for a simple menu is using userinput = inp...
environ 7 ans il y a | 2 réponses | 0
2
réponsesQuestion
Create a vector with a user inputted increment.
Is there an operator like linspace that creates a vector based on a chosen increment? I have to create an array based on 3 input...
environ 7 ans il y a | 1 réponse | 0
1
réponseQuestion
no input, two output function
The first part of this assignment is to create a function with no inputs and two outputs. The 15x1 matrices are X and Y so I've ...
environ 7 ans il y a | 1 réponse | 0
1
réponseQuestion
Output Array, how to assign values from a function
I'm new to coding so just assume I know next to nothing. I've created my code for an assignment and have what I want, I don't do...
environ 7 ans il y a | 1 réponse | 0
1
réponseWhen I run my function I want a row vector not a column
Yes, that's exactly it! Thank you for the help everyone. eta: I'll use "zeros" and leave it defined as it is, but it's the a...
environ 7 ans il y a | 0
When I run my function I want a row vector not a column
Here's what I have: function [n] = num(k) n(1)=1; n(2)=1; k = 3; while k <=100 n(k) = n(k-1)+n(k-2); ...
environ 7 ans il y a | 0
Question
When I run my function I want a row vector not a column
I have a simple function that generates large numbers. The ans is a column vector but I want a row. ans' changes it to what I wa...
environ 7 ans il y a | 3 réponses | 0
