photo

Shashank Sharma


Last seen: 5 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
11 个回答

Cody

0 个问题
47 个答案

排名
2,539
of 299,837

声誉
24

贡献数
0 个提问
11 个回答

回答接受率
0.00%

收到投票数
2

排名
 of 20,816

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
11,924
of 166,201

贡献数
0 个问题
47 个答案

评分
480

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Error when building a trend line
polyfit requires x , y to be vectors. Also, it makes no sense to fit a single value. It seems to me that your usage of polyval ...

6 years 前 | 0

| 已接受

已回答
multiple logarithmic x-axes
https://www.mathworks.com/help/matlab/creating_plots/graph-with-multiple-x-axes-and-y-axes.html The above doc describes the cre...

6 years 前 | 1

已回答
how to add 2 legends for 2 portions of one plot?
The following plot gives rise to two legends plot(x,y,'b'); hold on; plot(x1,y1,'r'); legend( 'on', 'off'); matlab automati...

6 years 前 | 0

已回答
Outputting function into multiple columns of matrix
Instead of returning [A1, A2, A3, A4, A5, A6] seperatly redifine your function to return AA. Where, AA = [A1 A2 A3 A4 A5 A6]; ...

6 years 前 | 1

| 已接受

已回答
How to scale figure when printed in pdf without losing resolution?
Can you attach your generated pdf ? It seems to be running fine on my computer. The titles of the figure and the xlabel appear...

6 years 前 | 0

已回答
why the subtraction gives the wrong ans.?
If you want to store negative it is better to convert it to int16. This makes it possible to store negative integers. The form...

6 years 前 | 0

已回答
How can I change orientation and resolution in a pdf printed figure?
Instead of the set function, use the orient function to set the orientation that is used when saving or printing https://www.ma...

6 years 前 | 0

| 已接受

已回答
Error using svd Input to SVD must not contain NaN or Inf.
Run any(any(isnan(din))) and any(any(isinf(din))). If the output is 1 it means your matrix din has an infinity value or a not a ...

6 years 前 | 0

| 已接受

已回答
How to get the max level and the fields name of the HDF5 data?
https://www.mathworks.com/help/matlab/ref/h5info.html The h5info function gives you the required information about a hdf5 file....

6 years 前 | 0

已回答
How to obtain a .csv file?
https://www.mathworks.com/help/matlab/ref/writematrix.html Documentation for writematrix function, writematrix(A,filename) here...

6 years 前 | 0

| 已接受

已回答
Is there an option for verbose or debug log file when installing MATLAB?
https://www.mathworks.com/matlabcentral/answers/101927-where-are-the-matlab-installation-and-activation-log-files-located The a...

6 years 前 | 0