C/Visual C - Ayuda en C!!

 
Vista:
sin imagen de perfil

Ayuda en C!!

Publicado por Marta (7 intervenciones) el 10/12/2016 13:49:36
Hola!! Estoy empezando a estudiar el lenguaje c y necesito un poco de ayuda con este ejercicio xD
Esta casi todo hecho y solo falta compilarlo y ver si funciona, pero no estoy muy segura de como hacer la ultima parte.

Cuando se elige la opción 4 del menu, el programa debe hacer un recorrido de la matriz (creo que es un recorrido) y comprobar si existen valores en la primera columna que sean superiores a 1, en la segunda columna que sean superiores a 0.2 y en la tercera columna que sean superiores a 0.02. Si encuentra estos valores aparecera un mensaje que indica que hay al menos un valor anomalo, de lo contrario, aparecerá un mensaje indicando que los valores que has introducido son correctos.

Si alguien me pudiera echar un cable estaría muy agradecida.
Muchas gracias de antemano por vuestra ayuda y por vuestro tiempo! ^^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#include <conio.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#define NUMPIPETAS 3
#define MAXMEDICIONES 5
 
void leerMediciones(int m[NUMPIPETAS][MAXMEDICIONES]);
void imprimirMediciones(int m[NUMPIPETAS][MAXMEDICIONES]);
void calcularPromedio (int m[NUMPIPETAS][MAXMEDICIONES]);
void calcularDesviacionTipica(int m[NUMPIPETAS][MAXMEDICIONES]);
void calcularErrorAleatorio(int m[NUMPIPETAS][MAXMEDICIONES]);
void buscarAnomalos(int m[NUMPIPETAS][MAXMEDICIONES]);
 
void main(){
    int matriz[NUMPIPETAS][MAXMEDICIONES];
    int m[NUMPIPETAS][MAXMEDICIONES], sumaColumnas[NUMPIPETAS];
    float x[15];
    int opc=0;
    char choice;
    do {
        leerMediciones(m);
        system("cls");
        printf("-----------MENU-----------\n\n");
        printf("1.- Introducir las mediciones\n");
        printf("2.- Imprimir mediciones\n");
        printf("3.- Calcular error aleatorio\n");
        printf("4.- Buscar valores anomalos\n");
        printf("0.- Salir\n\n");
        printf("Elige una opcion: ");
        scanf("%d",&opc);
        printf("----------------------------\n");
 
        switch(opc)
        {
            case 1: leerMediciones(matriz);
                    break;
 
            case 2: imprimirMediciones(matriz);
                    break;
 
            case 3: calcularPromedio (matriz);
                    calcularDesviacionTipica(matriz);
                    calcularErrorAleatorio(matriz);
                    break;
 
            case 4: buscarAnomalos(matriz);
                    break;
 
            default:printf("Opcion no valida. Por favor, vuelva a elegir. \n");
 
        }
      }while(choice !=4);
 
 
        imprimirMatriz(matriz);
     }
void leerMediciones(int m[NUMPIPETAS][MAXMEDICIONES]){
 
    int i,j;
 
    printf("Introduzca los elementos de la matriz %dx%d\n",NUMPIPETAS,MAXMEDICIONES);//deberia poner aqui i y j en vez de numpipetas y maxmediciones??
 
      for(i=0;i<NUMPIPETAS;i++){
          for(j=0;j<MAXMEDICIONES;j++){
 
            printf("Fila %d - Columna %d: ", i,j);
            scanf("%d", &m[i][j]);
 
         }
      }
}
 
void imprimirMediciones(int m[NUMPIPETAS][MAXMEDICIONES]){
 
    int i,j;
 
    printf("Impresion de la Matriz:\n");
 
       for(i=0;i<NUMPIPETAS;i++){
           for(j=0;j<MAXMEDICIONES;j++){
 
               printf("%d ", m[i][j]);
           }
                printf("\n");
       }
}
 
 
void calcularPromedio (int m[NUMPIPETAS][MAXMEDICIONES]){
 
   int i,j;
   float sumaTotal, sumaColumnas[NUMPIPETAS], suma, media;
/*Ahora calculamos la media*/
/*Pero primero hacemos la suma total*/
 
    sumaTotal=0;
 
     for(i=0;i<NUMPIPETAS;i++){
        for(j=0;j<MAXMEDICIONES;j++){
 
            sumaTotal = sumaTotal + m[NUMPIPETAS][MAXMEDICIONES];
 
                     }
                }
 
 
 
            /*Calculamos la suma de cada columna*/
                for(j=0;j<MAXMEDICIONES;j++){
                    suma = 0;
                    for(i=0;i<NUMPIPETAS;i++){
                        suma = suma + m[NUMPIPETAS][MAXMEDICIONES];
                    }
                  sumaColumnas[j] = suma;
 
            /*Ahora hacemos la media de cada columna*/
                  media = suma/5;
                }
 
}
 
void calcularDesviacionTipica(int m[NUMPIPETAS][MAXMEDICIONES]){
 
   int i,j;
   float suma1=0, media, varianza, desviacion_tipica;
   int x[i];
/*Calculamos la desviacion tipica*/
 
    for(i=0;i<NUMPIPETAS;i++){
        for(j=0;j<MAXMEDICIONES;j++){
                {
                 suma1 = suma1 + pow((media - x[i]), 2);
                }
 
        }
    }
 
    varianza = suma1 / 4;
    desviacion_tipica = sqrt(varianza);
        printf("Desviacion tipica = %.2f\n", desviacion_tipica);
        getch();
 
}
 
 
void calcularErrorAleatorio(int m[NUMPIPETAS][MAXMEDICIONES]){
 
   float error_aleatorio, desviacion_tipica;
 
    error_aleatorio = desviacion_tipica/sqrt(5);
        printf("Error aleatorio = %.2f\n", error_aleatorio);
        getch();
 
}
 
void buscarAnomalos(int m[NUMPIPETAS][MAXMEDICIONES]){
    //buscar numeros mayores que 1 en la primera columna
    //mayores que 0.2 en la segunda columna y que 0.02 en la tercera columna
 
 int i,j;
 
/*Vamos a hacer un recorrido para calcular los valores anomalos*/
    for(j=0;j<MAXMEDICIONES;j++){
         for(i=0;i<NUMPIPETAS;i++){
            if
 
 
 
         }
    }
 
 
}
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil
Val: 89
Ha mantenido su posición en C/Visual C (en relación al último mes)
Gráfica de C/Visual C

Ayuda en C!!

Publicado por Bruno (38 intervenciones) el 14/01/2017 15:51:03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const int COL_1 = 0;
const int COL_2 = 1;
const int COL_3 = 2;
 
const int MAL_1 = 1;
const float MAL_2 = 0,2;
const float MAL_3 = 0,02;
 
for( int i = 0; i < NUMPIPETAS ; ++) {
        if( m[i][COL_1] > MAL_1)
                printf( "Valor anómalo");
        if( m[i][COL_2] > MAL_2)
                printf( "Valor anómalo" );
        If( m[i][COL_3] > MAL_3)
                printf( "Valor anómalo 3" );
}

Hola, intenta recorrer las filas de la matriz m (aquí es donde guardas los valores según veo) preguntado por la columna 0, 1 y 2. Veo que los valores por preguntar tienen decimales por lo que deberías re-declarar la matriz m (que es del tipo entero según tu código).

Saludos
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
sin imagen de perfil
Val: 296
Bronce
Ha mantenido su posición en C/Visual C (en relación al último mes)
Gráfica de C/Visual C

Ayuda en C!!

Publicado por agustin (272 intervenciones) el 14/01/2017 16:57:09
Yo esta parte:
1
2
3
const int COL_1 = 0;
const int COL_2 = 1;
const int COL_3 = 2;
La simplificaria asi:
1
enum {COL_1,COL_2,COL_3};
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar