DIJESH - MATLAB Central
photo

DIJESH


IIT K

2014 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 05/14 to 03/25Use left and right arrows to move selectionFrom 05/14Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

15 質問
2 回答

ランク
34,527
of 297,775

評判
1

コントリビューション
15 質問
2 回答

回答採用率
73.33%

獲得投票数
1

ランク
 of 20,469

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,513

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 3

バッジを表示

Feeds

表示方法

質問


How do i create a hole or cut a certain portion of a plane in GUI?
x = [100 100 100 100]; y = [100 100 100 100]; z = [0 0 0 0]; fill3(x,y,z,blue,'FaceAlpha',0.4) This would create a...

11年弱 前 | 2 件の回答 | 0

2

回答

回答済み
How to clear a particular field in GUI?
delete(findall(gcf,'Tag','Tagname'))

11年弱 前 | 0

| 採用済み

質問


Can we use any other variable than symbolic to solve an equation?
I came to know that exe file do not accept symbolic variables.So instead of symbolic variables, can we define the variable in an...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


How do i convert the following into exe?
x = sym('x'); y = (x.^2 + 2*x + 1); answer = vpasolve(y,x); a = double(answer); I just want to make a program that...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


Why is my matlab not working suddenly?
I am using matlab 2013a on windows 8. Till yesterday night everything was fine. but from today morning when i click on the matla...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


How to clear a particular field in GUI?
I want to clear a particular field in GUI before executing a function. I have tagged the things to be cleared. But i do not know...

11年弱 前 | 3 件の回答 | 0

3

回答

回答済み
How can i set the scale of each axis in GUI?
set(gca,'XLim',[-200 200],'YLim',[-200 200],'ZLim',[-200 200]) You just have to insert this command. The scale will set.

11年弱 前 | 0

| 採用済み

質問


How can i set the scale of each axis in GUI?
promptg = {'Length (m): ','Breadth(m): ','Depth(m): ','Draft(m): ','Waterdepth(m): '}; titleg = 'General parameters of the ...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


Why cannot I fully run this code in exe?
E = 1.5*(10.^9); A = 0.00017; prompt = {'Enter the value of F1: '}; title = 'F1'; answer = inputdlg(prompt,title)...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


Why is the 'sym' undefined in exe file?
I wrote a code which has a sym variable and i am using it in a function in the code. I coverted the file into exe. But when i ru...

11年弱 前 | 0 件の回答 | 1

0

回答

質問


Is it possible to take inputs as several sets?
prompt = {'Enter the co-ordinates of points eg (x1,y1,z1,x2,y2,z2,.....: '}; title = 'Environmental forces'; answer = in...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


How do i add all the values which i get using eval function?
prompt = {'Enter the forces(kN): '}; title = 'Environmental forces'; answer = inputdlg(prompt,title); f = str2num(ans...

11年弱 前 | 2 件の回答 | 0

2

回答

質問


how do i use the values read by the eval function in other formulas?
prompt = {'Enter the forces(kN): '}; title = 'Environmental forces'; answer = inputdlg(prompt,title); f = str2num(ans...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


How to assign different values to different variables input by the user?
prompt = 'Enter data: '; title = 'Data input'; dlg_ans = inputdlg(prompt,title,[1 100]); data = str2num(dlg_ans{:})...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


Why is this contradiction happening?
prompt = {'Angle (degrees)'}; title = 'Angle'; answer = inputdlg(prompt,title); alpha = answer{1} a = degtorad(alp...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


How do i manage the number of input dialog box according to the user's choice?
Suppose the program is to find average of the numbers given by the user. The first step would be to create a dialog box to ask t...

11年弱 前 | 1 件の回答 | 0

1

回答

質問


How do i get multiple outputs in one dialog box?
Suppose i have the output values as x = 3, y =4 and z=2. I want to show all these 3 output values in a single dialog box. I ha...

11年弱 前 | 1 件の回答 | 0

1

回答