Shlomo Geva
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
12.165
of 295.467
REPUTACIÓN
4
CONTRIBUCIONES
11 Preguntas
7 Respuestas
ACEPTACIÓN DE RESPUESTAS
72.73%
VOTOS RECIBIDOS
3
CLASIFICACIÓN
18.962 of 20.234
REPUTACIÓN
0
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
1 Archivo
DESCARGAS
1
ALL TIME DESCARGAS
6
CLASIFICACIÓN
2.522
of 153.912
CONTRIBUCIONES
1 Problema
99 Soluciones
PUNTUACIÓN
1.187
NÚMERO DE INSIGNIAS
5
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Issue with parfor when using containers.Map
Here is the code of a script that calls a function inside a loop. The function is passed a Map object (created previously). I ...
más de 1 año hace | 0 respuestas | 0
0
respuestasPregunta
generate all variations on a 20-mer, that are 1 to 4 mismatches away
We consider a kmer. An arbitray k long DNA sequence, consisting of only {A,C,G,T}. For instance, 'ACTGGTCATTTGGGCTGGTA'. Let'...
más de 1 año hace | 1 respuesta | 1
1
respuestaPregunta
"Warning: udp will be removed in a future release. Use udpport instead."
I do not call udp directly. This warning only appeared after upgrading to Matlab version R2022b from an earlier version. I sus...
más de 1 año hace | 1 respuesta | 0
1
respuestaHow to step through vector permutations in a parallel loop, without generating all permutations in advance?
Thanks. That works for me.
alrededor de 2 años hace | 0
Pregunta
How to step through vector permutations in a parallel loop, without generating all permutations in advance?
I need a paralleised loop to step through all permutations of 1:N Even though for some values of N it is computationally feasib...
alrededor de 2 años hace | 2 respuestas | 0
2
respuestasPregunta
How to generate M *almost* mutually orthogonal vectors of dimensionality N, where M>>N ?
Generating mutually orthogonal vectors in is easy enough. I am looking for vectors in , where , and the vectors are almost ...
casi 3 años hace | 2 respuestas | 0
2
respuestasPregunta
How to return a uint64_t from a mex function?
I want to assign to plhs[0] a scalar of type uint64_t. Not sure what function to call. e.g. if I have uint64_t y=123; and I...
alrededor de 3 años hace | 1 respuesta | 0
1
respuestahow to get average of multiple rows and subtract from one group of average to another
Here is a solution to also take care of a number of rows that is not a multiple of your grouping (e.g. 30). I made up a matrix ...
más de 3 años hace | 0
how to get average of multiple rows and subtract from one group of average to another
%% load the fille into memory with M = csvread(filename) %% loop around M, 30 rows at a time for i=1:30:si...
más de 3 años hace | 0
Pregunta
Critical code section inside parfor
With C++ one can define critical code section inside a parallel for. Is there a similar construct that can be used with Matla...
casi 4 años hace | 2 respuestas | 0
2
respuestasEnviada
progressDemo
A demo of a very simple progress monitor for parfor
casi 4 años hace | 1 descarga |
k distinct combinations of size p without replacement
You can get this as follows: 1. First generate all binary vectors of size 2^N n=dec2bin(0:2^N-1)-'0'; in the examplll...
casi 4 años hace | 0
Find multiple elements in an array.
function out = findMultipleElements(a,b) % Find multiple elements in an array % example: % a = [1 5 2 5 3 5 4 2...
casi 4 años hace | 0
Resuelto
Rewrite setdiff to account for non-unique values
Setdiff(a,b) is a function that will remove all values of b from a. Sometimes, you need this function to do a little bit extra,...
casi 4 años hace
Resuelto
Renaming a field in a structure array
MATLAB has a <http://www.mathworks.com/help/techdoc/ref/setfield.html setfield> and a <http://www.mathworks.com/help/techdoc/ref...
casi 4 años hace
Resuelto
Implement a ROT13 cipher
Replace each character in string s1 with the character that is shifted 13 positions from it (wrap back to the beginning if neces...
casi 4 años hace
Resuelto
Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...
casi 4 años hace
Resuelto
Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...
casi 4 años hace
Resuelto
Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...
casi 4 años hace
Resuelto
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
casi 4 años hace
Resuelto
Sums with Excluded Digits
Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9. no...
casi 4 años hace
Resuelto
Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = ...
casi 4 años hace
Resuelto
Extract leading non-zero digit
<http://en.wikipedia.org/wiki/Benford%27s_law Benford's Law> states that the distribution of leading digits is not random. This...
casi 4 años hace
Resuelto
Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...
casi 4 años hace
Resuelto
Which doors are open?
There are n doors in an alley. Initially they are all shut. You have been tasked to go down the alley n times, and open/shut the...
casi 4 años hace
Resuelto
Make a Palindrome Number
Some numbers like 323 are palindromes. Other numbers like 124 are not. But look what happens when we add that number to a revers...
casi 4 años hace
Resuelto
Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...
casi 4 años hace
Resuelto
Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...
casi 4 años hace
Resuelto
Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....
casi 4 años hace