photo

Shlomo Geva


Last seen: environ un an il y a Actif depuis 2017

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

11 Questions
7 Réponses

File Exchange

1 Fichier

Cody

1 Problème
99 Solutions

Discussions

1 Point fort

RANG
10 282
of 301 653

RÉPUTATION
4

CONTRIBUTIONS
11 Questions
7 Réponses

ACCEPTATION DE VOS RÉPONSES
72.73%

VOTES REÇUS
3

RANG
19 682 of 21 377

RÉPUTATION
0

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
1 Fichier

TÉLÉCHARGEMENTS
1

ALL TIME TÉLÉCHARGEMENTS
7

RANG
3 030
of 175 992

CONTRIBUTIONS
1 Problème
99 Solutions

SCORE
1 187

NOMBRE DE BADGES
5

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
1 Point fort

NOMBRE MOYEN DE LIKES
0

  • Thankful Level 3
  • Thankful Level 2
  • First Submission
  • Cody Challenge Master
  • Creator
  • Promoter
  • First Review
  • Commenter
  • First Answer
  • Solver

Afficher les badges

Feeds

Question


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 ...

presque 3 ans il y a | 1 réponse | 0

0

réponse

Question


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'...

presque 3 ans il y a | 1 réponse | 1

1

réponse

Question


"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...

environ 3 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
How to step through vector permutations in a parallel loop, without generating all permutations in advance?
Thanks. That works for me.

plus de 3 ans il y a | 0

Question


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...

plus de 3 ans il y a | 2 réponses | 0

2

réponses

Question


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 ...

environ 4 ans il y a | 2 réponses | 0

2

réponses

Question


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...

plus de 4 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
how 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 ...

environ 5 ans il y a | 0

Réponse apportée
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...

environ 5 ans il y a | 0

Question


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...

environ 5 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
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...

plus de 5 ans il y a | 0

Réponse apportée
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...

plus de 5 ans il y a | 0

Question


Strange "correct" solution to Cody Problem 58. Tic Tac Toe FTW
I see this solution on the Cody solutions list. Solution 1949216 I am puzzled as to how this could possibly be rated as correc...

plus de 5 ans il y a | 1 réponse | 0

1

réponse

Question


Cody challenge hard coded answers
I have been using something similar to the Cody Challenge problem solving rig for many years (albeit more sophisticated) in teac...

plus de 5 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
MATLAB in research projects
I have used MATLAB since 1992. My first go-to platform. Every time. I am a tragic devotee. As a general computational platform...

plus de 6 ans il y a | 1

Question


PARFOR not using all logical cores
I have seen this quastion asked many times over several years, and I was notable to find a satisfactory answer, let alone a solu...

presque 7 ans il y a | 1 réponse | 0

1

réponse

Question


How to generate a set of N mutually orthogonal (N being a power of 2) N-dimensional binary vectors [+1,-1]?
For instance: with N=2 we could have [1 1; 1 -1] with N=4, we could have [1 1 1 1; 1 1 -1 -1; 1 -1 1 -1; 1 -1 -1 1] How to ef...

plus de 8 ans il y a | 3 réponses | 1

3

réponses

Réponse apportée
blastformat function
I had the same problem, using Windows. I installed the NCBI blast suite. In the \bin file where it is installed there is a com...

plus de 9 ans il y a | 0