photo

pipor


Last seen: 9 Monate vor Aktiv seit 2023

Followers: 0   Following: 0

Statistik

  • Thankful Level 3
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Duplicate tab2 in tab3
hi ,i want to duplicate this tabgroup (tab2) in tab3 Is possible to copy via code Tab2 e draw it in Tab3?

9 Monate vor | 1 Antwort | 0

1

Antwort

Frage


how to obtain additional space in the panel
hi, I have to enter other fields and information in this panel but I have no free space... We would like a menu that pops up...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


what is the best mode to populate this array in this loop annidate?
i want to code it to creare text for legend plot! (legend) it's better to use string and strcat or use arraycell ? if the be...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


what code to plot dark stairs colors
i use this code di plot n-line for i=1:r col=rand(3,1,1)'; hp1=plot(Ax_Eq,XDates,TEE1(i,:),'Color',col); end ...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


how refresh chart in the function?
hi, i use function to draw in app designer app (paramter of bubu function) is a reference's graph i use in the function "close...

11 Monate vor | 2 Antworten | 0

2

Antworten

Frage


how break loop in execution?
i can write a piece of my code: appp = uifigure; appp.Position = [500 500 300 75]; BB = uiprogressdlg(appp,'Message',...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


in the "label" object draw a rectangle around it

11 Monate vor | 0 Antworten | 0

0

Antworten

Frage


How to code NESTED CYCLES
f=[3 6 3 9] b=[5 8 10 12] a is a function with parameter f and b! for l=1:numel(b) for i=1:numel(f) a(f(i),b(l)) ...

11 Monate vor | 3 Antworten | 0

3

Antworten

Frage


what item do I need?
I need to display a list in a small space (where I will use the bars to scroll it) and select the elements of this Could the Li...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


how to use tree in app designer
i want to know what is selected or not: Jow is not selected Linda is not selected where can i find this information? ... thi...

11 Monate vor | 2 Antworten | 0

2

Antworten

Beantwortet
how write legend plot right side)
i do it with octave...several year ago

11 Monate vor | 0

Frage


how many input parameters to the pass function
function CalcolaButtonPushed(app, event) app.EquityUnfilteredCheckBox.Value app.EquityFilteredChe...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


how write legend plot right side)

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


how to visualize histogram with Datatime on Axis
i want to visualize similar but using histogram

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


how velocize operation boolean
N = 5 a=[0.3 1 0 3 9] b=a<N find(b&(~a))

11 Monate vor | 2 Antworten | 0

2

Antworten

Frage


Operation with logical data. Which is better?
n=5; a=[1 9 0 2 3]; a.*(a<n) (a.*(a<5))>0 %A logical(a.*(a<5)) %B Is a better solution A or B? Or does another solution ...

11 Monate vor | 3 Antworten | 0

3

Antworten

Frage


how create cell array of blank space " "
cell(1,5)

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


problem to combine string
TT ans = 1×3 string array "Loop" "1**" "0.3266" i want union "Loop 1** 0.3266" i try combine, strcat but n...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


replace character in array cell
1) [0,0,0] 2) [4,1,0.366] if first element is >0 i want substitute the number with 'Loop' [4,1,0.366] ====> [Loop 1** 0.3...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


i need to code speed ..anyone can help me? Getting rid of the loop would be a good start
v=[1 0 0 1]; d=[0.3 0 0 0.4] n="lp"; count=1; gg=find(v) clear b g={'Cycle n.',count} j=1; % for h=1:numel(gg) ...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


operation with logical array
c=[0 0 0 0] a=[1 0 1 0] b=[0 1 1 0] b-a c(find((b-a)>0))=1 if element a==0 and element b==1 i want to change element c ...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


how concatenate arraycell in this strange way
c = {1 4} d = {3 6} it's possibile to do it? {1 3} {4 6}

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


convert from cell array to double
b = 1×1 cell array {1×2 cell} i want to get last element in cell ("4") and convert it in double

11 Monate vor | 2 Antworten | 0

2

Antworten

Beantwortet
convert array double in array cell with simbol
no one helps me? :D i try: a=round(rand(3,1,1)*100) b=round(rand(3,1,1)*100) aa=num2cell(a) bb=num2cell(b) strjo...

11 Monate vor | 0

Frage


calculate wrong or "/" work different
b=156260 c=165000 c\b >> untitled3 b = 156260 c = 165000 ans = 0.9470 !?!?! ...

11 Monate vor | 1 Antwort | 0

1

Antwort

Frage


convert array double in array cell with simbol
n=6; a=[0 1 0 1 1 0] b=[1 0 0 0 1 1] c=cell(n,1) c{1,:}={a(1) b(1)} c{2,:}={a(2) b(2)} c{3,:}={a(3) b(3)} c...

11 Monate vor | 1 Antwort | 0

1

Antwort