Estadística
CLASIFICACIÓN
151.187
of 300.765
REPUTACIÓN
0
CONTRIBUCIONES
13 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
38.46%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 21.084
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 170.941
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
Script that performs the same as MATLAB function.
I am looking to create scripts for some internal functions: repmat, fliplr, flipud, and rot90. I am familiar with how each works...
más de 10 años hace | 0 respuestas | 0
0
respuestasPregunta
How do I bypass Error (index must be a positive integer or logical)?
I created a script that will give the average of the negative numbers entered by the user. I was attempting to store the entered...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I convert this to a while loop?
I have a script that works but I would like to convert it to a while loop and I am stuck. Any help is appreciated. Script is bel...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Can xlswrite be used to prompt the user for the file name?
I have a script that writes the results to an excel file. Currently the file name has to be entered into the script. I want the ...
más de 10 años hace | 3 respuestas | 0
3
respuestasPregunta
Error in Matrix multiplication function.
The message below is the error I get when I run this function file. I am not sure why. The function is supposed give an error if...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Code will not display getting error
I am getting an error on line 14 it will not display B. Any suggestions? This is the code: A=[1 2 3;4 5 6;7 8 9] [m,n]=...
más de 10 años hace | 2 respuestas | 0
2
respuestasPregunta
Can this code be more efficient?
I wrote this code with some help of a classmate and I think the code can run more efficiently. It coverts whole numbers & number...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Using a while loop to perform like cumsum function.
I have to create a code utilizing nested while loops to perform the same operation as cumsum. If I enter A=[1 2 3;4 5 6;7 8 9], ...
más de 10 años hace | 0 respuestas | 0
0
respuestasGeometric Mean and average.
I think I found the answer. i=1; n=1; while n >= 0 ix = input('Enter your numbers: '); if ix < 0 % break ...
más de 10 años hace | 0
Pregunta
Geometric Mean and average.
I am trying to create a code that will accept inputs until a negative integer is entered then take all the positive integers as ...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Help with dec2bin conversion
I have to create a code using a while loop that will output the binary form of a number(that is less than 1). The code I have wo...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
How to find matrix column & row max & min output as vector?
I need to create a script that gives the maximum & minimum value of each column and each row of a vector. This is what I have so...
más de 10 años hace | 2 respuestas | 0
2
respuestasPregunta
How to convert from a for loop to a while loop
function [y] = HW5_P2(n) %This function file determines the value of n^2 over the range 1 to n for i = 3:3:n x = [1:i];...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Using a while loop, what am I missing?
The code works but does not print the first number. The range is 1 to 11 odd numbers only but I need number 1 to show in the lis...
más de 10 años hace | 1 respuesta | 0
