Multiplicaicón de Matrices por un Escalar

public int[][] multiEscalar(int filas,int columnas,int[][] matriz,int escalar) { for(int x=0;x<filas;x++) { for(int y=0;y<columnas;y++) { matrizNueva3[x][y]=matriz[x][y]*escalar; } }return matrizNueva3; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.