Shawn Duenas - MATLAB Central
photo

Shawn Duenas


自 2019 起处于活动状态

Followers: 0   Following: 0

消息

Noise & Vibration Consultant for Rail Industry

统计学

MATLAB AnswersFrom 02/19 to 04/25Use left and right arrows to move selectionFrom 02/19Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 个提问
5 个回答

排名
5,072
of 298,264

声誉
10

贡献数
1 个提问
5 个回答

回答接受率
100.0%

收到投票数
1

排名
 of 20,554

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 160,718

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

提问


Graphics error 2018b: How to move y tick labels next to ticks instead of on top of ticks
In Matlab 2018b, the y-tick numbers are plotted on top of the axis line (on top of the tick actually) and the tick dir seems to ...

6 years 前 | 1 个回答 | 0

1

个回答

已回答
Graphics error 2018b: How to move y tick labels next to ticks instead of on top of ticks
The thread below has a similar problem and seems to track it down to plotting log-scale and reverse direction. Seems like a Matl...

6 years 前 | 0

| 已接受

已回答
Writing Data to Excel file
To print to different worksheets in the same spreadsheett: xlswrite(myFile, F_drag, 'forceValues') xlswrite(myFile, V_rng, 'Ve...

6 years 前 | 0

已回答
How to use XLSWRITE function in the for loop?
Keep a counter of the number of rows: insertRow=1; for iMat=1:nMat nRow=size(M,1); xlsRange=['A',int2str(insertRow),...

6 years 前 | 1

已回答
Problems about extracting all the data files
replace that line with: ufnames = [ufnames, [fdir fname ext]]; it seems like you're trying to concatenate everything together....

6 years 前 | 0

| 已接受

已回答
Why do tick directions change when log scaling x-axis?
Try this: ha1.XDir = 'normal'; set(ha1,'view',[-180,-90]) I get that same issue: Changing ytick direction is backwards. Chec...

6 years 前 | 0

| 已接受