photo

Eric Tao


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

All
  • Knowledgeable Level 1
  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Merge multi-row values to single row in table for classification training
Assume your original table is called 'data', and results will be stored in a new table called 'new', then run: new = table(...

6 years 前 | 0

已回答
How do I run increments of numbers through a function?
Use MATLAB colon expression, and you don't need for-loop anymore. Run: a = [95:-0.1:35]'; you will get the result.

6 years 前 | 0

已回答
join tables based on string in one cell in the other
You need to convert strings in foo.var1 to characters, assuming the 1st column name in foo and bar are both 'var1'. Run: ...

6 years 前 | 3

| 已接受

已回答
concatenate cell
just type: b = {strjoin(a,'_')}; Then your b will be a cell as {'kkk_lll_xxx_jjj.xls'}

6 years 前 | 0