Luis Corona
New Jersey Institute of Technology
Followers: 0 Following: 0
Estadística
4 Preguntas
0 Respuestas
CLASIFICACIÓN
35.117
of 301.990
REPUTACIÓN
1
CONTRIBUCIONES
4 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 21.481
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 177.922
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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 ...
más de 11 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
más de 11 años hace | 0 respuestas | 0
0
respuestasPregunta
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...
más de 11 años hace | 1 respuesta | 0
1
respuestaPregunta
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;
más de 11 años hace | 1 respuesta | 1