Community Profile

photo

Shlomo Geva


Last seen: 10 months 前 自 2017 起处于活动状态

统计数据

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

查看徽章

Content Feed

排序方式:

提问


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

11 months 前 | 0 个回答 | 0

0

个回答

提问


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

11 months 前 | 1 个回答 | 1

1

个回答

提问


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

1 year 前 | 1 个回答 | 0

1

个回答

提问


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

1 year 前 | 2 个回答 | 0

2

个回答

提问


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

2 years 前 | 2 个回答 | 0

2

个回答

提问


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

2 years 前 | 1 个回答 | 0

1

个回答

已回答
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 ...

3 years 前 | 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...

3 years 前 | 0

提问


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

3 years 前 | 2 个回答 | 0

2

个回答

已提交


progressDemo
A demo of a very simple progress monitor for parfor

3 years 前 | 1 次下载 |

已回答
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...

3 years 前 | 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...

3 years 前 | 0

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


Add two numbers
Given a and b, return the sum a+b in c.

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

加载更多