Beantwortet
I am trying to color a box on a plot.
You can change the face color of the box: square = rectangle('Position', [0, 0, 2.5, 15], 'EdgeColor','b','LineWidth',2,"Fa...

22 Tage vor | 0

| akzeptiert

Beantwortet
I am trying to color a box on a plot.
Try the following figure; an = annotation("textbox", "Color", "r", "BackgroundColor", "g", "String", "Text Box"); for i=0:0.0...

22 Tage vor | 0

Beantwortet
How to workaround this problem with angle?
You can try unwrap function. %total range of omega delta_omega=20; %intervals of omega that are used to approximate omega_pr...

23 Tage vor | 1

Beantwortet
I want lo graph a interseccion
% x= 3 -y^2 y1 = (-3:0.02:3); x1 = 3 - y1.^2; % y = x -1 x2 = (-2:0.01:3); y2 = x2 -1; plot(x1, y1, 'r-', x2, y2, 'b...

24 Tage vor | 1

Beantwortet
Finding array index for a given array element does not work all the time
Mind the round off error in searching double array mf = 0:0.001:0.6; i = find(abs(mf - 0.3910) < 1e-6)

27 Tage vor | 0

Beantwortet
How can i plot a 3D graph using excel file?
x = readtable("https://www.mathworks.com/matlabcentral/answers/uploaded_files/1632251/data.xlsx"); waterfall(table2array(x)')...

27 Tage vor | 1

| akzeptiert

Beantwortet
I have sigmoid graph and I want to stop the time until 4th and continue from day 10th until day 30th. Can I make like this?
M1(1)=0; t(1)=0; h=0.01; dt=-5:h:30; t=zeros(length(dt),1); M1=zeros(length(dt),1); for i= 1:length(dt) t(i+1)=t(i)+h...

28 Tage vor | 0

| akzeptiert

Beantwortet
How to use a string to format multiple plots?
You can use cell array as the input arguments. Here is an example %tiledlayout(4,4) %Format='"linewidth",2'; %Arbitrary numb...

28 Tage vor | 0

| akzeptiert

Beantwortet
why cant I see any lines on the graph
It seems that the solution is not converging. Try setting an appropriate step size or other options to make it converging. % I...

29 Tage vor | 0

Beantwortet
Adding a label with text on a plot
x = -3:.1:3 y = exp(-(x-0.5).^2/2); plot(x, y) % need to adjust the coordinates (normalized unit) % doc annotation for mor...

29 Tage vor | 0

| akzeptiert

Beantwortet
Hann window with a 2 km full width of window
N = 101; % Window length (# of points over -dz/2 to dz/2) w = hann(N); % hanning window plot(-(N-1)/2:(N-1)/2, w)

29 Tage vor | 0

| akzeptiert

Beantwortet
Color areas between two curves and the x and y-axis (not polynomial)
It seems that area function cannot individually change the basevalue (I have done some separate tests). One work around is to u...

29 Tage vor | 0

| akzeptiert

Beantwortet
how can I read and draw a plot and histogram from txt file on Matlab.
a = readtable("testdata.txt"); a.MESS_DATUM = string(a.MESS_DATUM) histogram(a.DD_10, 5) % 5bins

etwa ein Monat vor | 0

Beantwortet
recreating in matlab Butterworth Filter filter response
It seems that there is a confusion in s-domain and omega domain. The following is the Laplace Transform in s-domain. The plott...

3 Monate vor | 0

Beantwortet
how can I calculate the nautical direction angle from Cartesian x- and y-component of velocity
vx = 10; vy = 10; v = sqrt(vx.^2 + vy.^2) theta = wrapTo360(90 - rad2deg(atan2(vy, vx))) % Earth coordinates, with ref to ...

3 Monate vor | 0

Beantwortet
what is the map in this example?
"map" specifies the color of the image. load mri

3 Monate vor | 0

Beantwortet
Hi I want to know how to do substract one data file from an another with a same resolution
depth = readmatrix("https://www.mathworks.com/matlabcentral/answers/uploaded_files/1577092/depth.txt"); depth_00001 = readmatri...

3 Monate vor | 0

| akzeptiert

Beantwortet
How to change the color of a rigidbody visual.
See below for the question (1). I am not sure the part (2) and you may want to show your current code. body1 = rigidBody('body...

3 Monate vor | 0

Beantwortet
How to change the color of a rigidbody visual.
body1 = rigidBody('body1'); jnt1 = rigidBodyJoint('jnt1','revolute'); tform = trvec2tform([0 1 0]); setFixedTransform(jnt1,t...

3 Monate vor | 1

| akzeptiert

Beantwortet
Matlab giving incorrect matrix multiplication :/
There is no problem for the matrix A and its inverse. Where do you get invA? A =[ 1 1 1 0 10 20 0 ...

3 Monate vor | 0

Beantwortet
Is it possible to change scalar to numeric in workspace?
a = gpuArray(rand(3, 4, 2)); a(:,:,1) % use gather to convert gpu array to regular array b = gather(a(:,:,1))

3 Monate vor | 0

| akzeptiert

Beantwortet
Hai i am trying to 'pcolor plot' for Time for 12 hrs(x-axis) and height(y-axis) height size [103 X 1].can you help me?please
t = (1:12); h = (1:103); z = exp(-h'.*t/200); % data p = pcolor(t, h, z); p.EdgeColor = "none"; clear load(websave("...

3 Monate vor | 1

Beantwortet
convert decimal to hex with 3 digit
dec2hex(-30) % this converts to hex in 2's complement hex2dec('E2') % this treats the hex as unsigned by d...

3 Monate vor | 1

| akzeptiert

Beantwortet
Cannot save a matrix into a csv file correctly
A = [0.001 9.86543 0.002 5.26811 0.003 4.9170] writematrix(A, "matrixA.txt"); type matrixA.txt

4 Monate vor | 0

Beantwortet
Finding a definite integral
Assuming that u and k are constant vectors: u = randn(1, 100); k = randn(1, 100); syms x f = (u+k)*int(1.5*exp(-2*(1-x)), ...

4 Monate vor | 0

Beantwortet
I need help with this code
figure; facesColor = {[1 0.5 0], [1 1 1], [1 0 0], [1 1 0], [0 0 1], [0 1 0]}; acesVertices(:,:,1) = [0 0 0; 1 0 0; 1 1 0;...

4 Monate vor | 0

Beantwortet
Speed of the abs function
" squaring was a expensive operation" This is ture for VERY OLD cpu or some special purpose CPUs. In modern general purpose CP...

4 Monate vor | 2

Beantwortet
How to draw a 3D surface with all the given discrete points?
load(websave("XYZ_data.mat", "https://www.mathworks.com/matlabcentral/answers/uploaded_files/1559554/XYZ_data.mat")) whos figu...

4 Monate vor | 0

Beantwortet
polar data 3d plot
r = linspace(0,100, 101)'; theta = linspace(0, 360, 61); t = 1; % single t point for simplicity here u = 1./r.*cos(2*pi*.05...

4 Monate vor | 0

Beantwortet
How do I get this plot in Matlab?
% Define the general solution % [2 -1] and [1 2] are vectors. Use [ ]. X_general = @(t, c1, c2) (c1 * [2 -1] .* exp(-t)+ c2 *...

4 Monate vor | 0

Mehr laden