photo

Julian


Last seen: 4 years 前 自 2011 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

16 个提问
24 个回答

File Exchange

5 文件

Cody

0 个问题
7 个答案

排名
1,037
of 299,737

声誉
74

贡献数
16 个提问
24 个回答

回答接受率
56.25%

收到投票数
28

排名
5,752 of 20,791

声誉
213

平均
5.00

贡献数
5 文件

下载次数
6

ALL TIME 下载次数
1584

排名
46,131
of 165,604

贡献数
0 个问题
7 个答案

评分
80

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • Revival Level 1
  • 3 Month Streak
  • Thankful Level 3
  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

提问


How to use command line svn with builtin MATLAB integration?
MATLAB ships with a built in source controle integrations with svn or git. I am using svn, which works fine in MATLAB via the f...

4 years 前 | 2 个回答 | 0

2

个回答

已回答
Using Function and rowfun
You may need to set the 'InputVariables' parameter for rowfun to {'Vzr' 'Vzi' } to pass only these variables to your function. r...

4 years 前 | 0

| 已接受

已回答
Data Tips Enable in an WebApp
According to the limitations here "Data tips for graphics are not supported" However I really need this feature so that an end-...

5 years 前 | 0

已回答
Why do I get the error “Error using vertcat Dimensions of arrays being concatenated are not consistent.”?
Could it be that your variable strHH is not a row vector char array? I find it useful to define sql statement in a separate lit...

6 years 前 | 0

已回答
Sort and match data in a table
You might consider groupsummary(D, 'Col1', @(x){x}) where D is table containing your data. This does leave a "ragged right"...

6 years 前 | 0

| 已接受

已回答
Can I modify the banner for a MATLAB web-app
I contacted Mathworks and they pointed out that the banner "MATLAB Web Apps" disappears for running apps in R2019a. I note you c...

6 years 前 | 0

| 已接受

提问


Can I modify the banner for a MATLAB web-app
when running a particular web app, there is a fat banner labelled "MATLAB Web Apps" at the top of the browser screen. There is a...

6 years 前 | 1 个回答 | 0

1

个回答

已回答
Why does javaclasspath.txt not set the static javaclasspath when I re-start MATLAB
Answering my own question (because it showed up on the automated Related Content search) - see this Answer <https://uk.mathwo...

7 years 前 | 0

| 已接受

提问


Why does javaclasspath.txt not set the static javaclasspath when I re-start MATLAB
<https://blogs.mathworks.com/loren/2016/07/11/clearing-the-air-in-your-matlab-session/?s_tid=srchtitle#comment-46425 Here's> a n...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Did R2018a change the Exception ID for non-existing directory / folder
My code broke in R2018a when the MException id apparently changed from 'MATLAB:cd:NonExistentDirectory' into 'MATLAB:cd:NonEx...

7 years 前 | 0 个回答 | 0

0

个回答

提问


Can DatabaseDatastore work with Oracle, for example?
According to the doc here <https://uk.mathworks.com/help/database/ug/databasedatastore.html DatabaseDatastore> object supports...

7 years 前 | 1 个回答 | 0

1

个回答

已回答
How to paste nicely into Excel from MATLAB variable editor?
Thanks for your point. I don't have OpenOffice but I confirm that behaviour I first complained about still applies in MATLAB R20...

8 years 前 | 0

已回答
Moving Average Filter: A doubt
Yes, the 2 lines you wrote do achieve what you want. The filter function is causal and inclusively ends at t0. The much newer fu...

8 years 前 | 0

提问


What do you think of "Did you mean clearvars -except".....?
I often use clearvars -except, e.g. clearvars -except temperature loads speeds but because I don't sub-vocalize the hyph...

9 years 前 | 2 个回答 | 0

2

个回答

已回答
How do I find the index of a datapointon a MATLAB plot?
Surely the approved method for this is to use a data cursor? I fear that it may respond slowly to navigation if you have a milli...

9 years 前 | 0

已回答
I want to conver the excel dateformat('27-03-2013 06:00:00') in to matlab yearday i.e 31 jan 2013 = 31 and `1st Feb 2013 = 32
Consider: t = {'27-03-2013 06:00:00' % in text form, apparently from Excel '09-02-2013 12:00:00' } % an example m...

9 years 前 | 0

| 已接受

已回答
How do I read the text between href tags and return the results in a cell array?
You can try something like >> RE='<a[\s]+href="(?<target>.*?)"[^>]*>(?<text>.*?)</a>'; >> list=regexp(html, RE, 'names')...

9 years 前 | 0

| 已接受

已回答
Extract hyperlink from data retrieved through urlread()
By default hyperlinks are rendered in the command window. You already have the underlying text that you want in your variable bu...

9 years 前 | 1

| 已接受

已回答
Load data from .MAT into .XML
With a single use-case you could just write your own function by expanding the example given in MATLAB help <http://uk.mathworks...

10 years 前 | 0

已回答
detect debug mode
I also needed an answer to this question! I was pleased just now to find here on Answers that feature('IsDebugMode') does the tr...

10 years 前 | 4

已回答
How to paste nicely into Excel from MATLAB variable editor?
_It is not directly possible. From Mathworks:_ I understand that you would like to paste cells with strings from the MATLAB V...

10 years 前 | 0

| 已接受

提问


How to paste nicely into Excel from MATLAB variable editor?
One can readily paste data from Excel into a MATLAB cell array in the variable editor using Paste Excel Data (Ctrl-Shift-V), but...

10 years 前 | 10 个回答 | 3

10

个回答

已回答
How do I invoke a shadowed core MATLAB function (not built-in) from an overloaded function of same name
A colleague gave me this answer, which I have used. I put the following code into the top of my overlay function (print() in my ...

11 years 前 | 7

| 已接受

提问


How do I invoke a shadowed core MATLAB function (not built-in) from an overloaded function of same name
In an application I wanted to add a calling jacket for MATLAB's print. I was trying to add a print option -dsvg which used the g...

11 years 前 | 2 个回答 | 1

2

个回答

提问


How can I detect when a figure's colormap is changed?
The most obvious way to change a figure's colormap is via the Edit/Colormap... menu, although controls such as those added with ...

11 years 前 | 0 个回答 | 0

0

个回答

已回答
Initializing a struct with n-d fields.
An alternative approach just using builtin functions C = cell(numel(field),1,2,3,4); % pre-allocate cell-array to required ...

12 years 前 | 1

提问


Where did my Service Requests go?
The look and feel of the service request history in my TMW account appears to have had a makeover. While this looks like a wel...

12 years 前 | 1 个回答 | 1

1

个回答

提问


Whats the difference between a table (new in R2013b) and a dataset (stats toolbox)?
As an enthusiast for the dataset class, I notice with interest a new class table in the latest MATLAB release (in the promo vide...

12 years 前 | 1 个回答 | 2

1

个回答

已回答
Publish pdf from compiled executable via MCR
the short answer to your question would be NO, see <http://www.mathworks.co.uk/help/compiler/unsupported-functions.html> Pro...

12 years 前 | 0

| 已接受

已回答
RESTOREDEFAULTPATH doesn't restore default path (rather restores user's path)
Further to my comment (see above), the old behaviour can be had by restoredefaultpath; matlabpath(strrep(matlabpath, use...

12 years 前 | 2

| 已接受

加载更多