GULZAR - MATLAB Central
photo

GULZAR


Last seen: 1日 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 07/23 to 03/25Use left and right arrows to move selectionFrom 07/23Use 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

20 質問
2 回答

ランク
181,307
of 297,711

評判
0

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

回答採用率
90.0%

獲得投票数
0

ランク
 of 20,465

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,406

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • First Answer
  • Thankful Level 3

バッジを表示

Feeds

表示方法

質問


How to save a output matrix in each iteration?
I have a matlab code with output of 2x2 matrix I need a data contains with 2x2 matrix with total number of iteration(correspon...

9ヶ月 前 | 1 件の回答 | 0

1

回答

質問


How to generate fx value according to number of samples?
I have a matlab code of matrix multiplication with normal distribution I need a output corresponding to number of samples = 20...

10ヶ月 前 | 1 件の回答 | 0

1

回答

質問


How to plot contour ?
clc clear close all %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Define material p...

11ヶ月 前 | 1 件の回答 | 0

1

回答

質問


How to create random sequence?
How to generate gaussain random sequence with mean = 817e-9 and standard deviation = 10e-9 and probability = 0.25 (total 50 numb...

11ヶ月 前 | 1 件の回答 | 0

1

回答

質問


How to multiply matrices randomly?
I need a matlab code for positional-random matrix multiplication (choose M1 or M2 randomly) frequency = 100 to 200 THz (i.e 100...

12ヶ月 前 | 1 件の回答 | 0

1

回答

回答済み
linear optimization problem in matlab
f=[-10 -2]; a=[1 2;1 -3;-20 2]; b=[20 3 -10]; aeq=[]; beq=[]; lb=[0 0]; ub=[]; [X, F]=linprog(f,a,b,aeq,beq,lb,ub); disp...

約1年 前 | 0

質問


How to do optimization coding for minimize peak width ?
i need a optimization code for minimize the "peak_width" (width at half maximum) by the optimized "del" (thickness variation par...

約1年 前 | 1 件の回答 | 0

1

回答

質問


How to combine two plots in same figure with axis break?
I need a figure like this %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % This is a progr...

約1年 前 | 1 件の回答 | 0

1

回答

質問


How to plot five figures with different values?
I have a band diagram of one-dimensional photonic crytal with hydrostatic pressure "P" I need five different band diagram of P...

約1年 前 | 1 件の回答 | 0

1

回答

質問


How to plot average of logarithm of transmission versus sample length by positional-randomize structure?
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % This program uses Transfer Matrix Method ...

約1年 前 | 0 件の回答 | 0

0

回答

質問


How to plot bar graph with colorscale?
I need a bar graph like the picture given below for these values with colorjet. The points (1,0), (1,0.1), (1,0.2), (1,0.3), (1,...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


How to plot a bar graph for individual values?
I need a bar graph for these values with colorjet. The points (1,0), (1,0.1), (1,0.2), (1,0.3), (1,0.4) and (1,0.5) with values ...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


How to find the peaks?
How to find the peak values of the curve. I try, but not getting result. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


How to find the intersection values of line and curve?
How to find the intersection values of line(black) and the curve(blue). And I need the intersection points in ascending order i...

1年以上 前 | 2 件の回答 | 0

2

回答

質問


How to display pi symbol in the output?
how to display pi symbol instead of numerical value in the out of the given code clc; clear all; close all; nA=3.3;nB=2.25; %...

1年以上 前 | 3 件の回答 | 0

3

回答

質問


How to plot all figures in only one plot?
How to plot all figures in one plot (like hold on hold off command) using for loop. I don't need 12 subplots. I need 12 figures ...

1年以上 前 | 1 件の回答 | 0

1

回答

質問


How to find the intersection values of line and curve?
How to find the intersection values of line(black) and the curve(blue) clc close all d1 = 0.4;d2 = 0.6;d = d1 + d2; n1 = 3...

1年以上 前 | 2 件の回答 | 0

2

回答

質問


How to find the intersection values?
How to find the intersection values of line(black) and the curve(blue) clc close all d1 = 0.4;d2 = 0.6;d = d1 + d2; n1 = ...

1年以上 前 | 2 件の回答 | 0

2

回答

質問


How to plot shaded rectangles in between band gaps?
How to add the rectangle shaded boxes in between the band gaps. Ref image attached in end of the page. clc close all c = 3e8;...

1年以上 前 | 1 件の回答 | 0

1

回答

回答済み
How to remove the vertical lines of band gaps?
clc close all c = 3e8; d1 = 0.4; d2 = 0.6; d = d1 + d2; n1 = sqrt(12); n2 = 1; lambda = linspace(400e-3,800e-3, 10000000...

1年以上 前 | 0

質問


How to remove the vertical lines of band gaps?
clc close all c = 3e8; d1 = 0.4; d2 = 0.6; d = d1 + d2; n1 = sqrt(12); n2 = 1; lambda = linspace(400e-3,800e-3, 10000); ...

1年以上 前 | 2 件の回答 | 0

2

回答

質問


How do I find indexes of three for-loops of maximum value of function with three indexes?
clear all clc xx=0:1:5; yy=0:1:7; zz=-5:1:1; for i=1:length(xx) x=xx(i); for j=1:length(yy) y=yy(j); ...

1年以上 前 | 1 件の回答 | 0

1

回答