回答済み
how can I plot the following graph
z = linspace(1,3500,100); n = 3000*rand(100,5); date = {'05-Mar';'12-Mar';'19-Mar';'26-Mar';'02-Apr'}; f=figure; axes("YDi...

3年以上 前 | 0

回答済み
Add data tips to figure using code
figure img = rand(800,1000); h = imagesc(img); d = datatip(h); d.DataIndex=353*800+355; d.Location = "northwest"; d2 = d...

3年以上 前 | 0

| 採用済み

回答済み
How to scatter plot when the values are i.e 1,1 and 1,10 grid
What do you want on your y and x axes? sparams.frequency_GHz = 10*rand(41,16); delta = rand(41,16); This one separates the ...

3年以上 前 | 0

| 採用済み

回答済み
How to export data and plot from app designer to excel?
Please see the app attached. You can use writetable to save your data to an Excel file. You can use xlswritefig found on the Fil...

3年以上 前 | 0

| 採用済み

回答済み
Preview in MATLAB GUI
Please see Previewing Data in Custom GUIs. You can use the command: preview(vid, hImage); where hImage is the handle to the i...

3年以上 前 | 0

| 採用済み

回答済み
Previous legend replaces the new one in a plot, why?
Were you changing the location of the legend as shown below? I made a quick app (attached) using the approach below. plot(rand(...

3年以上 前 | 0

回答済み
Matching the two columns of two different tables and to combine the common values in second table.
You can use innerjoin or join. See Join Tables.

3年以上 前 | 0

| 採用済み

回答済み
highlighting a section of a plot
Here is another approach using area function. x = linspace(500, 4000); y = sin(x); Note, this is only one point, so I illustr...

3年以上 前 | 2

回答済み
Algorithm to identify certain peaks at certain loation is a graph
You can get the values and index of the peaks and apply the x and y thresholds as shown below: plot (x,y,t,D); [v,idx]=findpea...

3年以上 前 | 1

| 採用済み

回答済み
My App does not plot the data i read, why?
You need to get rid of clear on line 60. This removes the uicomponents from the "app" variable. This prevents you from plotting ...

3年以上 前 | 0

| 採用済み

回答済み
How do I Save all the Variables in the Workspace.
save('filename.mat','-mat')

3年以上 前 | 0

| 採用済み

回答済み
How to group different values in an array?
t = table; t.intensityofcostcomposition = ["10.0,64.0,NaN"; "15.0,160.0,290.0"; "15.0,160.0,320.0"; ...

3年以上 前 | 0

| 採用済み

回答済み
Mouse position events app designer
If you want a blue outline on an uiaxes, you could enter the following in the start up function: set(app.UIFigure, 'WindowButto...

3年以上 前 | 0

回答済み
Interpolate points between two coordinates
Since you are doing linear interpolation, you can just use the linspace function. A = [1,7]; B = [6,1]; N = 5; % You can chan...

3年以上 前 | 1

| 採用済み

回答済み
Start Stop button group not working
The function works for me. pause and play are displayed in the command window. Please see testpauseplay app attached. If you ...

3年以上 前 | 0

回答済み
Visual 3D coordinate map interactive data Toolbar Settings in APP Design
Zy, Unfortunately, brush is not supported in compiled apps.

3年以上 前 | 0

| 採用済み

回答済み
'Exceedes array bounds' In Matlab App
Have you tried debugging the line app.LoadedDataTable.Data = app.DATA(1:15,[1:4,13]); I would check the size of app.DATA I be...

3年以上 前 | 0

回答済み
Move through slices in 3 D plot matlab?
You could make a slider that changes the variable xslice xslice = 0.5; X = rand(10000,1); Y = rand(10000,1); Z = rand(1000...

3年以上 前 | 0

回答済み
How to extract year, month, day from character vectors?
var =['1970/01/01' '1970/01/02' '1970/01/03' '1970/01/04' '1970/01/05' '1970/01/06'] % I want to make you aware of Datetim...

3年以上 前 | 0

| 採用済み

回答済み
How to hide data in a UITable ?
You could do this workaround: paramD = struct('name',"frequence",'unite',"GHz",'nb',numel(freq),'liste',{freq,0},'scattering',s...

3年以上 前 | 0

| 採用済み

回答済み
App Designer: Standalone Desktop App is not enabled. How to activate?
Do you have a MATLAB Compiler license? You will need this to create a Standalone Desktop App or Web App.

3年以上 前 | 0

| 採用済み

回答済み
Can we plot horizontal boxchart?
You can add the option 'orientation','horizontal' to your input for boxchart or boxplot. See examples below. load carsmall f...

3年以上 前 | 1

回答済み
index exceed the number of arrays elements
Collective = rand(1,124); single = rand(1,393); length_collective=length(Collective) %equals to 124 length_single=length(sing...

3年以上 前 | 1

| 採用済み

回答済み
Request certification and invoice
Please contact Customer Service at service@mathworks.com or via phone 508-647-7000, option 2.

3年以上 前 | 1

回答済み
How can I use WindowButtonMotionFcn in an app?
Matt, I cleaned up your code and changed the Get_Mouse_Location callback in line 110 (see attached). I got rid of the global ...

3年以上 前 | 0

| 採用済み

回答済み
Cannot Change UIFigure (App) Size Programmatically In 2022a
ILoveMATLAB, I could not replicate your issue. I created an app in R2019b that change the size of UIFigure and then converted...

3年以上 前 | 0

| 採用済み

回答済み
How to make this string a = '(0 0 0)' into a double b = [0 0 0]?
a = '(12 2.8 1.22)' a = strrep(a,')',']'); a = strrep(a,'(','['); b = str2num(a)

3年以上 前 | 0

| 採用済み

回答済み
Add User Text Input to Next Line in Table via Button Push in App Designer
Please see the app attached and the code below: methods (Access = private) % Code that executes after component ...

3年以上 前 | 0

| 採用済み

回答済み
Trigger event callback from another event callback
You can simply write CheckedNodesChangedFcn(app) within the 'ButtonPushedFcn' callback

3年以上 前 | 0

| 採用済み

回答済み
Histogram or bar graph with greater than bin?
Below is a workaround. a=260*rand(1,252); p=histcounts(a,"BinWidth",10,"BinLimits",[0,250],"Normalization","pdf"); figure ...

3年以上 前 | 0

さらに読み込む