Community Profile

photo

Pramit Biswas


Indian Institute of Technology (IIT), Patna

Last seen: 8 mesi fa Attivo dal 2013

Statistiche

All
  • Thankful Level 3
  • Revival Level 1
  • Quiz Master
  • CUP Challenge Master
  • Personal Best Downloads Level 3
  • First Review
  • 5-Star Galaxy Level 4
  • First Submission
  • Speed Demon
  • First Answer
  • Creator
  • Commenter

Visualizza badge

Content Feed

Visto da

Problema


k partitions of an array of numbers having nearly equal sum
Input: Array X, of size 1xn and number of partition K. Output: 2-d array Y of size kxm. Conditions: Each element of the array ...

quasi 2 anni fa | 0 | 0 risolutori

Domanda


Not able to start parpool in multiple different matlab instances simultaneously in a single machine.
I tried in multiple different matlab instance. for i = 1:2 str2Eval = [ '!matlab -r "myFunction(''' fileName(i) ''');exit;...

quasi 4 anni fa | 2 risposte | 0

2

risposte

Inviato


Particle Swarm Optimization (PSO)
Searching/Tuning/Optimizing by Particle Swarm Optimization (PSO) method

circa 4 anni fa | 64 download |

Thumbnail

Domanda


In switch-case, case values from variable (dynamic)
array1 = [1 2 3]; % this will change in the program array2 = [4 5 6]; % this will change in the program switch an...

quasi 6 anni fa | 1 risposta | 0

1

risposta

Domanda


Clarification for parallel process
I have set up one _mainScript_, where one parallel for initiates calling of _func1_ function. This function calls _script1_ with...

quasi 6 anni fa | 1 risposta | 0

1

risposta

Domanda


Help: restructuring parfor
totpV=5; vars = rand(totpV,2); for loop1=1:100 for loop2=1:totpV % Make this loop2 parallel using parfor ...

quasi 6 anni fa | 1 risposta | 0

1

risposta

Risolto


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

quasi 6 anni fa

Risolto


Given a window, how many subsets of a vector sum positive
Given a vector: [1 0 -1 3 2 -3 1] and a window of 2, A sliding window would find: 1 + 0 = 1 0 - 1 = -1 ...

quasi 6 anni fa

Risolto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

quasi 6 anni fa

Risolto


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

quasi 6 anni fa

Risolto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

quasi 6 anni fa

Risolto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

quasi 6 anni fa

Risolto


Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...

quasi 6 anni fa

Risolto


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the s...

quasi 6 anni fa

Risolto


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<http://upload.wikimedia.org/wikipe...

quasi 6 anni fa

Risolto


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

quasi 6 anni fa

Risolto


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

quasi 6 anni fa

Risolto


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

quasi 6 anni fa

Risolto


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

quasi 6 anni fa

Risolto


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

quasi 6 anni fa

Risolto


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<http://upload.wikimedia.org/wikipedia/commons/e/e0/Equilateral-tr...

quasi 6 anni fa

Risolto


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

quasi 6 anni fa

Risolto


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

quasi 6 anni fa

Risolto


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<http://upload....

quasi 6 anni fa

Problema


Find the missing numbers.
Total *N* numbers are in the series of natural numbers ( *1,2,3,...,N* ). The input is an array (unsorted) of those natural num...

quasi 6 anni fa | 1 | 43 risolutori

Domanda


Specify any block parameter values from other constant block (simulink)
I have multiple RLC blocks, and I want to control their parameter from one single block, so that I don't have to set for each RL...

quasi 6 anni fa | 1 risposta | 0

1

risposta

Inviato


sortBlikeA(A,B)
sort array B, as the array A is sorted

circa 6 anni fa | 1 download |

Risposto
sorting according to another vector
function B = sortBlikeA(A,B) [~, Ao] = sort(A); Bs=sort(B); B(Ao)=Bs; end

circa 6 anni fa | 3

Domanda


histcounts error in place of histc
Links: <https://in.mathworks.com/help/matlab/ref/histc.html histc>, <https://in.mathworks.com/help/matlab/ref/histcounts.html hi...

circa 6 anni fa | 3 risposte | 1

3

risposte

Domanda


sum of array in structure.
uC = zeros(1,length(X)); for loop1 = 1:length(X) uC(loop1) = sum(X(loop1).Y); end Any other/proper/quick wa...

circa 6 anni fa | 1 risposta | 0

1

risposta

Carica altro