photo

shamal


Last seen: 14일 전 2023년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

143 질문
7 답변

순위
223,805
of 300,392

평판
0

참여
143 질문
7 답변

답변 채택
67.83%

획득한 표
1

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,373

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 5

배지 보기

Feeds

보기 기준

질문


don't color body
Hi, i used chat gpt to create this code..i want to plot candlestick (trading) but i can't to color body function BIAS_plotLastC...

2개월 전 | 답변 수: 0 | 0

0

답변

질문


search text in arraycell
hi, i've arraycell and i want catch scalar in "WindowCount" after "[Wsp]" but before "[Wsp\DetachedWindows]" See pics Resul...

5개월 전 | 답변 수: 2 | 0

2

답변

질문


how to build array using matlab.graphics.chart.primitive.Line' property
Look this example: selected = findobj(allLines,'Type','line','LineWidth',0.5); [cc]=selected; selected 13x1 xx selecte...

5개월 전 | 답변 수: 1 | 0

1

답변

질문


how to catch object "button"
hi, i try to catch this button h = findobj('button one',app.Button) but i receive error.. How can i do it?

5개월 전 | 답변 수: 1 | 0

1

답변

질문


use "set" with trasparent color
selected = findobj(allLines,'Type','line','LineWidth',0.5); set(selected, 'MarkerFaceAlpha',.2,'MarkerEdgeAlpha',.2); Error...

5개월 전 | 답변 수: 2 | 0

2

답변

질문


catch line using callback
hi, John D'Errico helped me to code this: mycallback = @(varargin) disp("yeah? what do ya want?"); plot(1:5,rand(1,5),butt...

5개월 전 | 답변 수: 1 | 0

1

답변

질문


select line by touching with mouse
this is a equity plotted Is it possible to select one by touching it with the mouse?

5개월 전 | 답변 수: 1 | 0

1

답변

질문


problem to use compose
load('matlab_bb.mat') 0.7937 0.7937 0.7937 0.7937 0.7937 bbb=char(compose("%% %2.2f",bb)); ...

5개월 전 | 답변 수: 1 | 0

1

답변

질문


find sequence in a matrix
Hi, it possibile to velocize it and avoid loop? (I will be a matrix .,not a single array) (if is possible to use vectorization...

6개월 전 | 답변 수: 5 | 0

5

답변

질문


use rescale with matrix
hi,i want to normalize matrix using interval -1 and 1 load('matlab_E'); B=rescale(E,1,-1);

6개월 전 | 답변 수: 1 | 0

1

답변

질문


how find a decimal number in a table
tab=load('matlab_Tab.mat'); find(mod(tab.Tab,1)~=0);

7개월 전 | 답변 수: 0 | 0

0

답변

질문


using ismember with different arrays
a=[4 6 1 2] b=[4 2 1 9] c=[8 0 5 4] [n,m]=ismember(a,b,c); %How can i do it? Answer is 4... the 4 is in a,b and c

7개월 전 | 답변 수: 1 | 0

1

답변

질문


how to take the first number of the sentence (before the hyphen)
i've this array string..i want to catch the first number: 2 - MICRO_VARIE_LIVE ====> catch 2 3 - index_Top_Live ====> catc...

7개월 전 | 답변 수: 1 | 0

1

답변

질문


plot stem in vertical position
x = linspace(-2*pi,2*pi,100); y = 4*pi*randn(1,100)-2*pi; figure; stem(x,y, 'LineWidth', 3) % Set up figure propert...

8개월 전 | 답변 수: 2 | 0

2

답변

질문


Match name to axis value in chart
load('matlab_pl.mat') stem(pl(:,2)) ff= find(pl(:,2)); ax = gca; ax.XTickLabel=pl(ff,1); hi, i see that the name axi...

8개월 전 | 답변 수: 2 | 0

2

답변

질문


how to send parameter function between app
hi, i'm in PredatorListallStrategies.mlapp (A) and i want to send parameter to PredatorManageStrategies (B) I receive this err...

9개월 전 | 답변 수: 1 | 0

1

답변

질문


how use categorical in uitable
VNAMES={'On','Trading','L_S','Stat','PROVA','Cap','Perc','Draw_Sys'}; cat=categorical({'Fil';'Stat'}); VTYPES=[{'logical'},...

9개월 전 | 답변 수: 1 | 0

1

답변

질문


truncated rowname in uitable
hi, I see the truncated rowname in uitable How can i display full name in uitable rowname? RowName=compose(formatSpec,t1,si...

10개월 전 | 답변 수: 2 | 0

2

답변

질문


how assign cell to dropdown menu
app.PeriodicityDropDown.Items ans = 1×4 cell array {'Option 1'} {'Option 2'} {'Option 3'} {'Option 4'} ...

10개월 전 | 답변 수: 1 | 0

1

답변

질문


draw more date in the axis
I would like to report more dates: for example every month or every week I use plot to draw it..( plot(Ax_Sys,XDates(locs(:,i...

10개월 전 | 답변 수: 2 | 0

2

답변

질문


how to remove flag in all nodes
Hi, i've a node with more children...i want remove flag K>> app.Tree_2 ans = CheckBoxTree with properties: ...

11개월 전 | 답변 수: 1 | 0

1

답변

질문


Select year in timetable
hi,i want to select year in Pr_anno using range in TR anno=load('matlab_ANNO.mat') tr=load('matlab_TR.mat') PR_anno: 01/01/...

11개월 전 | 답변 수: 1 | 0

1

답변

질문


a function slows down my profiler: I would like to speed it up
%{ hi, i've create a large code.. it's fast but there is a function that slows everything down for me (my application does sev...

대략 1년 전 | 답변 수: 1 | 0

1

답변

질문


come to convert words into cell array
g='Eb=3;bb=5;' i want to create arraycell as similar S={'Eb',3;'bb',5} (';' is used to insert a new symbol

대략 1년 전 | 답변 수: 2 | 0

2

답변

질문


call callback function in my code
function SaveDataButtonPushed(app, event) list=app.portFolio_struct.List(:,1); [eq,sis,RifSis]=MP...

대략 1년 전 | 답변 수: 1 | 0

1

답변

질문


select node in TreeNode
hi, a is a parents and b is a children (see pics) i want to select children using code How can i do it?

대략 1년 전 | 답변 수: 1 | 0

1

답변

답변 있음
movegui in app designer
hi, now i use matlab >> version ans = '24.1.0.2603908 (R2024a) Update 3' if i close and reopen app designer i see it...

대략 1년 전 | 0

질문


find unique array cell with 2 field
load('matlab_f.mat') f i want to find row equal f(1.:) and f(2,:) are equal f(3.:) and f(4,:) are not equal

대략 1년 전 | 답변 수: 3 | 0

3

답변

질문


to use ismember with arraycell
gg = 4×1 cell array {'A' } {'A'} {'B' } {'A' } [a,b]=ismember({'A'},gg) a = ...

대략 1년 전 | 답변 수: 3 | 1

3

답변

질문


saving struct empty give me error
hi, it's possibile to save empty struct? How can i do it? A=app.portFolio_struct; On=logical(str2double(A.List(:,2))); A....

대략 1년 전 | 답변 수: 2 | 0

2

답변

더 보기