Beantwortet
Matrix does not want to multiply and gives an error when I multiply a 3x3 matrix with a 3x1 matrix
Do Ainv*B not B*Ainv A=[9,29.3, 140.99; 29.3, 140.99,827.693; 140.99, 827.693, 5400.863] Ainv=inv(A) % inverse matrix B=[4...

etwa 2 Jahre vor | 0

Beantwortet
How to set the visibility of labels attached to controls such as edit boxes in APP Designer?
First, make the label show up in the Component Browser by right-clicking the edit field and selecting "Include component labels ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to fix the size of markers when drawing in Matlab? Make the marker larger with local magnification instead of being fixed and unchanged.
Using image objects or patch objects instead of text objects will cause the "markers" to scale appropriately when you zoom in or...

etwa 2 Jahre vor | 2

| akzeptiert

Beantwortet
How to make a scatter plot where each point is colored according to a given ID and the xlabel ticks are determined by the associated string.
Here's one way: % random data in a table N = 1000; Value = randn(N,1); Condition = char(randi(4,N,1)+64); ID = "ID "+randi(...

etwa 2 Jahre vor | 0

Beantwortet
How to rearrange String Data within table relative to one Column of Data.
"Should I match the text pattern before Concatinating them into one Table?" You can do it that way, but since I don't know much...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
How can I remove inverted repeat pairs of strings from a table?
T = readtable('table.csv') Here's one way to find pairs of reversed rows: temp = string(T.(1)) == string(T.(2)).'; [r2,r1] = ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to have different line styles and markers in one plot?
% Define alpha values alpha_values = [0, 0.25, 0.5, 0.75, 1]; % Define gamma values for each alpha gamma_values = [ 1,...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Adding Legend of Data Categories
baseline_L = 885.63; baseline = baseline_L; % random data y_values = 2000*rand(90,4); [N,M] = size(y_values); % GRAPH...

etwa 2 Jahre vor | 0

Beantwortet
Erorr when replace row's value of table in-array.
Sometimes the X don't exactly match (e.g., they're different by ~1e-15), so this finds the closest. for ii = 1:numel(jointTSS1)...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Why is this While Loop not running?
It's not possible for a number to be simultaneously less than 6 and greater than 12: while margin<6 && margin>12 Did you...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot correctly errorbars on grouped bar plot?
I am able to reproduce the problem; it looks like a bug in MATLAB, having to do with creating an errorbar in an axes that has a ...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
3D plotting of the bounding box around few boxes
Two problems that I can see: 1. The tranpose here (actually it's a complex-conjugate tranpose): item_vertices = vertices{i}'; ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Subplot of a matrix 2x361x10
% random 2x361x10 data: data = rand(2,361,10); data(1,:,:) = data(1,:,:)*2; figure [~,n,p] = size(data); for ii = 1:p ...

etwa 2 Jahre vor | 0

Beantwortet
Finding value for each degree from matlab figure
data = readmatrix('Naca LD1408 9R.txt'); f = fit(data(:,1), data(:,2),'smoothingspline','SmoothingParam',0.3); xi = -15:1:18...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
how to solve the error comes in line 25
These lines make sigma and beta tables with one variable each sigma = data(:,5); beta = data(:,6); which produces the...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
have a static text display box to display text (GUI) app designer
The app version of a static text uicontrol is a TextArea (uitextarea function).

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to avoid patch color in legend?
In the call to legend, you can specify which lines (or whatever) you want included. Here it's legend_lines: legend_lines = gob...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Index exceeds the number of array elements. Index must not exceed 1.
%% Design Project Part 2 % 2.1 % Constants: kapp = 0.009; % m^3/mol*min L = 1; % m Vtot = 0.25; % m^3 ...

etwa 2 Jahre vor | 0

Beantwortet
How to open a .bin file containing several frame images
This would read the first frame: filename = 'myfile.bin'; fid = fopen(filename,'r'); time_stamp = fread(fid,1,'double')...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
"Unrecognized method, property, or field 'value' for class 'matlab.ui.control.NumricEditField'."
Use "Value" not "value".

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
what does the vertical line in the editor window mean?
<https://www.mathworks.com/help/matlab/matlab_prog/edit-and-format-code.html#brqxeeu-58>

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
I am trying to plot a line but it is not working.
Use element-wise division ./ in the calculation of Xe.

etwa 2 Jahre vor | 0

Beantwortet
MATLAB App Designer - Reading Data
It's possible I'm not fully understanding how the app is supposed to work, but there are a few potential or likely problems that...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
I am struggling trying to figure out this code I have it completed but I keep getting errors, can you help?
Well, it doesn't take a crystal ball to see that this is not going to work (multiplying a 1x15 character vector by a 1x8 charact...

etwa 2 Jahre vor | 0

Beantwortet
These 3 codes when run give error
In WHO.m lines 45-48, you have for i=1:Nfoal group(i).pos=lb+rand(1,dim).*(ub-lb); group(i).cost=fobj(group(i).pos); ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Speed Up String Conversion
Avoid using table2cell for this; instead, access the table data directly (using curly braces {}, or, even better, dot indexing) ...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
how to change width and space in barplot?
"increase the width of the axis so that it is less compressed" Well, you can resize the figure, either manually or programmatic...

etwa 2 Jahre vor | 0

Beantwortet
While Loop not running
This loop will never terminate if entered while Close>L_entry_price==false; i=i+1; end because only i changes. Close and...

etwa 2 Jahre vor | 0

Beantwortet
How to calculate maximum distance between two points (coordinates) on a XY (2D) plane ?
"seem to be the largest distance" Seems to be, but it's not. The x-scale and y-scale are not quite the same. Use axis equal t...

etwa 2 Jahre vor | 2

| akzeptiert

Beantwortet
How do structures work?
To create a scalar (as opposed to a 0x0) structure array, this 'AllSampleRates', {},... needs to be 'AllSampleRates', {{}},.....

etwa 2 Jahre vor | 0

Mehr laden