解決済み


Find the peak 3n+1 sequence value
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

8年弱 前

解決済み


Find relatively common elements in matrix rows
You want to find all elements that exist in greater than 50% of the rows in the matrix. For example, given A = 1 2 3 5 ...

8年弱 前

解決済み


Counting in Finnish
Sort a vector of single digit whole numbers alphabetically by their name, in Finnish. See the Wikipedia page for <http://en.wik...

8年弱 前

解決済み


Alphabetize by last name
Given a list of names in a cell array, sort the list by the last name. So if list = {'Barney Google','Snuffy Smith','Dagwood ...

8年弱 前

解決済み


Clean the List of Names
Given a list of names in a cell array, remove any duplications that result from different capitalizations of the same string. So...

8年弱 前

解決済み


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

8年弱 前

解決済み


Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...

8年弱 前

解決済み


Counting Sequence
Given a vector x, find the "counting sequence" y. A counting sequence is formed by "counting" the entries in a given sequence...

8年弱 前

解決済み


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

8年弱 前

解決済み


Scrabble Scores
Given a word, determine its score in <http://en.wikipedia.org/wiki/Scrabble Scrabble>. The input string will always be provi...

8年弱 前

解決済み


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

8年弱 前

解決済み


Test for balanced parentheses
Given the input inStr, give the boolean output out indicating whether all the parentheses are balanced. Examples: * If ...

8年弱 前

解決済み


Maximum running product for a string of numbers
Given a string s representing a list of numbers, find the five consecutive numbers that multiply to form the largest number. Spe...

8年弱 前

解決済み


Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...

8年弱 前

解決済み


The Goldbach Conjecture, Part 2
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

8年弱 前

解決済み


Function Iterator
Given a handle fh to a function which takes a scalar input and returns a scalar output and an integer n >= 1, return a handle f...

8年弱 前

解決済み


QWERTY coordinates
Given a lowercase letter or a digit as input, return the row where that letter appears on a <http://en.wikipedia.org/wiki/Keyboa...

8年弱 前

解決済み


Indexed Probability Table
This question was inspired by a Stack Overflow question forwarded to me by Matt Simoneau. Given a vector x, make an indexed pro...

8年弱 前

解決済み


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

8年弱 前

回答済み
"Standalone Named User” license question
Speak to Mathworks support regarding the standalone named user license. They can convert it to a network named user license, whi...

8年弱 前 | 1

| 採用済み

回答済み
How to plot/use numerous values in single cell?
Brian, This example should be a good starting point. % Setting up some test data x = rand(40,3); data = cell(3,800...

8年弱 前 | 0

| 採用済み

回答済み
How do I make a MATLAB created table properly appear in EXCEL?
Brad, Each row of Make is a collection of strings that cannot be concatenated automagically. You can concatenate the strin...

8年弱 前 | 1

| 採用済み

回答済み
How to save table in workspace as txt/.m file in matlab ?
You can use *writetable* to write to a text file. writetable(data,'outputfile.txt'); If you really need this to be a .m ...

8年弱 前 | 0

回答済み
Fastest Way of Opening and Reading .csv Files (Currently using xlsread)
Thankfully, you don't need to interact with Excel to read csv files. You can use <http://www.mathworks.com/help/matlab/ref/texts...

8年弱 前 | 2

| 採用済み

回答済み
Interleaving columns of two cell arrays
Here's a function I wrote for you. It contains a subfunction to create the interleaving index. Save this to interleaveCells.m an...

8年弱 前 | 0

| 採用済み

回答済み
modify all vectors in workspace
Joel, I will preface this by saying you really shouldn't have variables floating around your workspace without knowing their ...

約8年 前 | 0

回答済み
Different correlation results using matrix with NaN values
Falco, The documentation for corrcoef indicates that 'complete' is the 'rows' value corresponding to your first calculation. ...

約8年 前 | 0

回答済み
write cell array of strings in text file
filePh = fopen('features.txt','w'); fprintf(filePh,'%s\n',Strings{:}); fclose(filePh);

約8年 前 | 8

| 採用済み

回答済み
save cell array of strings and doubles to excel file
You can write cells directly to the file. If you're using xlswrite, you should specify a target file with an .xls or .xlsx exten...

約8年 前 | 3

| 採用済み

解決済み


Remove all the words that end with "ain"
Given the string s1, return the string s2 with the target characters removed. For example, given s1 = 'the main event' your ...

約8年 前

さらに読み込む