photo

Vishal Chaudhary

MathWorks

2018년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
11 답변

순위
1,587
of 300,780

평판
44

참여
0 질문
11 답변

답변 채택
0.00%

획득한 표
18

순위
 of 21,086

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 171,018

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
How to pass Optional-Positional arguments to a function in matlab
Pass the input as a parameter name and value pair. For example the below should work: printPhoto('myfile.gif','color','colorful...

거의 7년 전 | 1

답변 있음
How to shrink legend without shrinking font size
There is no particular attribute to shrink legend without changing font-size. Try using: l = legend l.NumColumns = 2; Other...

거의 7년 전 | 1

답변 있음
In Appdesigner , how to know the attributes of certain UI
To get all the current attributes of UI, "get" can be used. For example: ax = uiaxes; get(ax) ax.XLim=[0 10]; This will sho...

거의 7년 전 | 0

답변 있음
Adding error bars to a grouped bar plot
The ability to specify that the "errorbar" function display the error bars inside the individual bars is not available in MATLAB...

거의 7년 전 | 16

| 수락됨

답변 있음
I'm trying to create a binary to unary encoding converter. However I am getting stuck on one of the final loops. Which should print out the number of ones for the positional value. After this I plan on adding the resulting matrices together.
In the second for loop, since, mul is array, try using mul(N) to access the elements and change the logic accordingly. I think a...

거의 7년 전 | 0

답변 있음
Connections between layers removed once call to train is made.
The “configure” function takes input data and target data as input and configures the network. You can read about it in the docu...

7년 초과 전 | 0

답변 있음
Add only top axis in plot
The axes function creates a new axes rather than changing location of previous one. To change the location of x axes only, y...

7년 초과 전 | 0

답변 있음
Write a Matlab program by using a while loop that finds the smallest positive number 2^m such that 1+x>1 in the machine.
Precision differs in MATLAB and theoretical calculation. So when you write while loop you will know the difference.

7년 초과 전 | 0

답변 있음
Linear Regression - hac function
You can also use fitlm function with hac. DataTable = array2table([X,y],'VariableNames',{'X1','X2','X3','Y'}); OLSModel ...

7년 초과 전 | 0

답변 있음
I have constructed my neural network, how can I now use it to predict?
For predicting you can use following : y = net(x); % x contains input data and y is predicted data If you want to crea...

7년 초과 전 | 0

답변 있음
Out of Memory Error
Try, doing following things to see if it works: 1. Turn off the Workspace I/O (to do that, in the Simulink model go to Simula...

7년 초과 전 | 0

| 수락됨