Réponse apportée
How to avoid omitting empty items while extracting part of a structure as an array?
Here's one way to do it. The problem is that it will be very hard to get Sarah out of this. for cc = 1:length(s) if isempt...

plus d'un an il y a | 1

| A accepté

Réponse apportée
How do i change a ISO 861 Date that is beeing immported as categorical to a double or similar?
All I did was use the readtable function and it seemed to work fine. Is there something else that I'm missing? importTable = re...

plus d'un an il y a | 0

Réponse apportée
Color lines in a parallel coordinates plot according to the value of a column
I don't know what your data looks like so I'm going to make up some of my own load patients X = [Age Height Weight Smoker Syst...

plus d'un an il y a | 0

| A accepté

Réponse apportée
String date and time identification
How consistent are is the information in your variable called date? Will they always look like what you have described in your q...

plus d'un an il y a | 0

Réponse apportée
I want to move up my boxchart
I'm not sure if there is a way to do that. You can always use this instead. % Left axes ax1 = nexttile; boxchart(ax1,G2) set...

plus d'un an il y a | 0

Réponse apportée
Labeling points of plot()
For a regular plot, you can use the Data Tips icon on the axtoolbar to manually select the points you want to view. To do it pro...

plus d'un an il y a | 0

| A accepté

Réponse apportée
new row in a excel file
Excel = actxserver('Excel.Application'); set(Excel, 'Visible', 1); Workbooks = Excel.Workbooks; Workbook = invoke(Workbooks, ...

plus d'un an il y a | 0

A résolu


Stress-Strain Properties - 5
Similar to the previous problem, materials may be characterized by their stiffness-to-weight ratio, which is the elastic modulus...

plus d'un an il y a

A résolu


Stress-Strain Properties - 4
A common measure of the ability of a material to carry load per unit mass is termed strength-to-weight ratio and is calculated b...

plus d'un an il y a

A résolu


Stress-Strain Properties - 3
A brittle material will not exhibit a yield point. In other words, the yield point and failure point coincide. In such cases, th...

plus d'un an il y a

A résolu


Stress-Strain Properties - 2
The resilience of a material is its ability to resist permanent (or plastic) deformation. The resilience coincides with the elas...

plus d'un an il y a

A résolu


Stress-Strain Properties - 1
This is the first in a series of problems regarding mechanics of materials, in particular, material properties drawn from stress...

plus d'un an il y a

Réponse apportée
Write function to generate matrix
This would be saved as YourFunction.m function FunctionOutput = YourFunction(input1,input2) %input1 is number of rows ...

plus d'un an il y a | 0

Réponse apportée
How to add zeros in cell of string
OrigCell = {'10'; '00'; '11'; '011'; '0101'; '0100'}; zeroCell = cell(length(OrigCell),1); zeroCell(:,1) = {'00000000'}; ...

plus d'un an il y a | 0

| A accepté

Réponse apportée
fill the area between multiple curves
The easiest way I know is to use the fill function documented here. Take all the x and y data from your arcs using %you may ha...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Vertical bars in scatter plot
x = randi([200 800],800,1); %random x data for scatter y = randi([1 12],800,1); %random y data for scatter scatter(x,y,'b') h...

plus d'un an il y a | 0

| A accepté

Réponse apportée
How to insert a cell array elements in another cell array
Is this what you're looking for? Stations = [A,B,C];

plus d'un an il y a | 0

| A accepté

Réponse apportée
how animate change in 2D graphs?
I would use animatedline to achieve this. Here's an example from the documentation. h = animatedline; axis([0,4*pi,-1,1]) x...

plus d'un an il y a | 0

Réponse apportée
I'm trying to display a pdegplot graph in appdesigner, but I have no idea how to get it do display using app.UIAxes. My code is below
All you have to do is put your uiaxes as the first arguement. For you, it would likely just be pdegplot(app.UIAxes,gm). Here's a...

plus d'un an il y a | 0

Réponse apportée
How can I set text orientation in Excel using matlab actxserver?
Excel = actxserver('Excel.Application'); set(Excel, 'Visible', 1); Workbooks = Excel.Workbooks; Workbook = invoke(Workbooks, ...

plus d'un an il y a | 2

| A accepté

Réponse apportée
Matlab Design App, status text?
Try putting a small pause after you edit the value like this: app.StatusEditField.Value = "Processing"; pause(0.1)

plus d'un an il y a | 0

Réponse apportée
How to set an image as background for plot and display it in existing GUI?
This link seems like what you're looking for.

plus d'un an il y a | 1

| A accepté

Réponse apportée
How can I use the brush tool after compile my app in appdesigner?
Can you clarify your question a bit more? What are you trying to do, and what is your app doing instead of allowing you to brush...

plus d'un an il y a | 0

Réponse apportée
How to load different txt files with different names in for loop?
Rather than dynamically creating names for files, I think it would be better to select the files you want to open and plot them....

plus d'un an il y a | 0

Réponse apportée
Draw a histogram in app designer
Can you show what your attempted solution? My first instinct is to direct you to the documentation for title and histogram.

plus d'un an il y a | 0

| A accepté

Réponse apportée
How to calculate the frequencies interval?
I'm a little confused what you're asking, but if you have access to the x and y data then you should be able to use the findpeak...

plus d'un an il y a | 0

Réponse apportée
How to open a bdf file and read and see what's inside it?
I think this would work for you [file,path] = uigetfile('.bdf'); cd(path) fileData = readcell(file);

plus d'un an il y a | 0

| A accepté

Réponse apportée
Plotting fixed X data against multiple Y data in matlab
Thank you for the clarification. There may be too many plots for the data to look nice, but the way I would do what you have des...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Plotting fixed X data against multiple Y data in matlab
[file,path] = uigetfile('*.*'); %select the file cd(path) %change directories fileData = readmatrix(file); %read the file xda...

plus d'un an il y a | 1

Réponse apportée
Select EditField with a FOR loop in Matlab app designer
Generally speaking, I don't think this is good practice, but here is a way you can do what you want. You may have to adapt it to...

plus d'un an il y a | 0