photo

Shashank Sharma


Last seen: 5년 초과 전 2019년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
11 답변

Cody

0 문제
47 답안

순위
2,547
of 300,365

평판
24

참여
0 질문
11 답변

답변 채택
0.00%

획득한 표
2

순위
 of 20,933

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
12,114
of 168,262

참여
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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 0