Risolto


Summing Digits within Text
Given a string with text and digits, add all the numbers together. Examples: Input str = '4 and 20 blackbirds baked in a...

quasi 13 anni fa

Risolto


Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...

quasi 13 anni fa

Risolto


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

quasi 13 anni fa

Risposto
Symbolic substitution in matrices
vpa(T03n) vpa(T0Hn) help vpa VPA Variable precision arithmetic. R = VPA(S) numerically evaluates each elemen...

quasi 13 anni fa | 0

| accettato

Risolto


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

quasi 13 anni fa

Risolto


Return a list sorted by number of occurrences
Given a vector x, return a vector y of the unique values in x sorted by the number of occurrences in x. Ties are resolved by a ...

quasi 13 anni fa

Risposto
A Problem with bar3 Function
Are you trying to make 3 independent graphs on the same figure? Are you familiar with subplot()? That would give you mo...

quasi 13 anni fa | 1

Risposto
Estimate the minimum point given any function
FMINBND Single-variable bounded nonlinear function minimization. X = FMINBND(FUN,x1,x2) attempts to find a local minimizer X...

quasi 13 anni fa | 0

Risposto
Name for this practice: c = x.^2
"Element-wise power" <http://www.mathworks.com/help/matlab/ref/power.html> Also, "Element-wise multiplication" http://w...

quasi 13 anni fa | 2

| accettato

Risolto


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

quasi 13 anni fa

Risposto
Anyone integrated photovoltaic generation system to the grid in matlab 2013a.
If you have SimPowerSystems: <http://www.mathworks.com/matlabcentral/fileexchange/34752-grid-connected-pv-array>

quasi 13 anni fa | 0

| accettato

Risposto
How can I derive partitions of data sets in for loop
Creating arrays with the number in the name is considered bad programming practice, so instead of fixing your code, most people ...

quasi 13 anni fa | 0

| accettato

Risolto


Elapsed Time
Given two date strings d1 and d2 of the form yyyy/mm/dd HH:MM:SS (assume hours HH is in 24 hour mode), determine how much time, ...

quasi 13 anni fa

Risolto


Balanced number
Given a positive integer find whether it is a balanced number. For a balanced number the sum of first half of digits is equal to...

quasi 13 anni fa

Risposto
How to browse a Solar cell into your Simulink model Matlab 2013a
<https://www.mathworks.com/store/productselection.do> <http://www.mathworks.com/products/simelectronics/>

quasi 13 anni fa | 0

Risolto


Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...

quasi 13 anni fa

Risolto


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

quasi 13 anni fa

Risposto
lsqcurvefit - problem with number of iterations
1) As a first try, I'd recommend scaling your x0, so they are all similar order of magnitude when passed into lsqcurvefit(). ...

quasi 13 anni fa | 0

Risolto


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

quasi 13 anni fa

Risposto
Remove Operations in a Vector
real(x)

quasi 13 anni fa | 0

| accettato

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 13 anni fa

Risolto


Choose the best fitting dominoes
You will be given a cell array of nx2 matrices. Choose one row from each matrix. These are the ordered pairs that will be plac...

quasi 13 anni fa

Risposto
Need help with central difference method..
Perhaps you mean: plot(x_2,df,'LineWidth',1,'MarkerSize',100) instead of: plot(x_2,df(i-1),'LineWidth',1,'MarkerSi...

quasi 13 anni fa | 0

Risolto


Find best domino orientation
Given a list of pairs, find the orientation they should be placed in a line, such that the sum of the absolute values of the dif...

quasi 13 anni fa

Risolto


Rotate and display numbered tile
Imagine a square tile with four numbers on it, one on each edge. We will call these edges north, east, south, and west. If th...

quasi 13 anni fa

Risolto


Find best placement for ordered dominoes (harder)
Given a list of ordered pairs, find the order they should be placed in a line, such that the sum of the absolute values of the d...

quasi 13 anni fa

Risolto


Find perfect placement of non-rotating dominoes (easier)
Given a list of ordered pairs, find the order they should be placed in a line, such that the sum of the absolute values of the d...

quasi 13 anni fa

Risolto


Stuff the Board
You have a stack of tiles to put onto an array-like playing board. Each tile has a number (always an integer), and the board var...

quasi 13 anni fa

Risolto


Scoring for oriented dominoes
Given a list of ordered pairs, and the order they should be placed in a line, find the sum of the absolute values of the differe...

quasi 13 anni fa

Risolto


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

quasi 13 anni fa

Carica altro