Respondida
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...

alrededor de 2 años hace | 0

Respondida
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 ...

alrededor de 2 años hace | 0

| aceptada

Respondida
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...

alrededor de 2 años hace | 2

| aceptada

Respondida
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(...

alrededor de 2 años hace | 0

Respondida
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...

alrededor de 2 años hace | 0

| aceptada

Respondida
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] = ...

alrededor de 2 años hace | 0

| aceptada

Respondida
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,...

alrededor de 2 años hace | 0

| aceptada

Respondida
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...

alrededor de 2 años hace | 0

Respondida
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)...

alrededor de 2 años hace | 0

| aceptada

Respondida
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...

alrededor de 2 años hace | 0

| aceptada

Respondida
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 ...

alrededor de 2 años hace | 1

| aceptada

Respondida
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}'; ...

alrededor de 2 años hace | 0

| aceptada

Respondida
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 ...

alrededor de 2 años hace | 0

Respondida
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...

alrededor de 2 años hace | 1

| aceptada

Respondida
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...

alrededor de 2 años hace | 0

| aceptada

Respondida
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).

alrededor de 2 años hace | 0

| aceptada

Respondida
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...

alrededor de 2 años hace | 0

| aceptada

Respondida
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 ...

alrededor de 2 años hace | 0

Respondida
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')...

alrededor de 2 años hace | 0

| aceptada

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

alrededor de 2 años hace | 1

| aceptada

Respondida
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>

alrededor de 2 años hace | 1

| aceptada

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

alrededor de 2 años hace | 0

Respondida
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...

alrededor de 2 años hace | 1

| aceptada

Respondida
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...

alrededor de 2 años hace | 0

Respondida
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); ...

alrededor de 2 años hace | 0

| aceptada

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

alrededor de 2 años hace | 1

| aceptada

Respondida
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...

alrededor de 2 años hace | 0

Respondida
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...

alrededor de 2 años hace | 0

Respondida
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...

alrededor de 2 años hace | 2

| aceptada

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

alrededor de 2 años hace | 0

Cargar más