解決済み


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

12年以上 前

解決済み


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

12年以上 前

解決済み


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

12年以上 前

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

12年以上 前 | 0

| 採用済み

解決済み


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

12年以上 前

解決済み


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

12年以上 前

回答済み
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...

12年以上 前 | 1

回答済み
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...

12年以上 前 | 0

回答済み
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...

12年以上 前 | 2

| 採用済み

解決済み


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

12年以上 前

回答済み
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>

12年以上 前 | 0

| 採用済み

回答済み
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 ...

12年以上 前 | 0

| 採用済み

解決済み


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

12年以上 前

解決済み


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

12年以上 前

回答済み
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/>

12年以上 前 | 0

解決済み


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

12年以上 前

解決済み


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

12年以上 前

回答済み
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(). ...

12年以上 前 | 0

解決済み


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

12年以上 前

回答済み
Remove Operations in a Vector
real(x)

12年以上 前 | 0

| 採用済み

解決済み


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

12年以上 前

解決済み


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

12年以上 前

回答済み
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...

12年以上 前 | 0

解決済み


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

12年以上 前

解決済み


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

12年以上 前

解決済み


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

12年以上 前

解決済み


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

12年以上 前

解決済み


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

12年以上 前

解決済み


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

12年以上 前

解決済み


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

12年以上 前

さらに読み込む