yared Zeleke
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
108.484
of 295.673
REPUTACIÓN
0
CONTRIBUCIONES
6 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
33.33%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.262
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.257
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 to get child_fitness=0 i got some eror please any one figure it out let me know thanks?
clear;close all;clc; GENSIZE=20; target = input('Enter a string (max 30 chars in length): ', 's'); genepool=[]; pop= char...
más de 6 años hace | 0 respuestas | 0
0
respuestasPregunta
please would you change this python program to matlab ?
GENSIZE=20 genepool =[] for i in range(0,GENSIZE); dna = [random.choice(string.printable[:-5]) for j in...
más de 6 años hace | 1 respuesta | 0
1
respuestai want to change this python program to matlab
clc clear all target="hello,world!"; function fitval = fitness(source, target)%def calc_fitness; fitval = 0; ...
más de 6 años hace | 0
Pregunta
i want to change this python program to matlab
import random import string target = "Hello, World!" def calc_fitness(source, target): fitval = 0 for...
más de 6 años hace | 1 respuesta | 0
1
respuestaPregunta
a simple evoulutionary algorithm 1. the user can enter any user defined string as the evolutionary tareget up to 30 characters max
clc clear t= 'Hell world!'; numRands=length(t); tlength=numRands; source=t(ceil(rand(1,tlength)*numRands)); ...
más de 6 años hace | 1 respuesta | 0
1
respuestaPregunta
write some statements on the command line to remove the largest elements from a vector .try it out on x=[1 2 5 0 5]. the idea is to end up with [1 2 0] in x. Use find and empty vector [ ].
clc clear runflag='Y'; while runflag=='Y'|runflag=='y' x_6 = input('Please input in the following format...
más de 6 años hace | 1 respuesta | 0
1
respuestaPregunta
where can i use round function to make the function perfect
function [amt_ret, x]= calculate_change(tendered,price) %------------------------------------------------------------------...
más de 6 años hace | 1 respuesta | 0