Statistica
4 Domande
0 Risposte
RANK
37.210
of 302.046
REPUTAZIONE
1
CONTRIBUTI
4 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.0%
VOTI RICEVUTI
1
RANK
of 178.438
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
I want this random sequence to repeat. How do I make this sequence repeat 'n' amount of times?
clc; clear all; %Input signal------------------------- numBits = input('Enter number of bits: '); %User inputs data ...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
I wish to repeat a sequence a certain amount of time?
%Input signal------------------------- numBits = input('Enter number of bits: '); %User inputs data byte = randi([0,1...
oltre 11 anni fa | 0 risposte | 0
0
risposteDomanda
How to Plotting a Binary input?
%Input signal clc; clear all; d = input('Enter Decimal Input to convert to Binary : '); byte = dec2bin(d) %Plotting Input...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
The following program is takes the power from 1 to 3 from a given array. How do I get the result just for x3. When I put x3 it gives me the result for x1 I don't want that result I want the result of x3 only. Can anybody give me a hint?
function [x1,x2,x3] = powers1to3(n) x1 = 1:n; x2 = x1.^2; x3 = x1.^3;
quasi 12 anni fa | 1 risposta | 1