Author: PuTI
Please help me to solve two nonlinear algebraic equations
eq1 = b5*L1^2 + (b9 + b7)*L1 + b6*L2^2 + b10*L2 + b8 = 0:
eq2 = b27*L1^4 – b32*L1^3 + b33*L1^2 – b34*L1 …
+ b28*L2^4 – b35*L2^3 + b36*L2^2 – b37*L2 …
+ (b39 – b38 + b30 – b29 – b31) = 0:
%Solve the system for L1 and L2
solutions = solve({eq1, eq2}, {L1, L2}):eq1 = b5*L1^2 + (b9 + b7)*L1 + b6*L2^2 + b10*L2 + b8 = 0:
eq2 = b27*L1^4 – b32*L1^3 + b33*L1^2 – b34*L1 …
+ b28*L2^4 – b35*L2^3 + b36*L2^2 – b37*L2 …
+ (b39 – b38 + b30 – b29 – b31) = 0:
%Solve the system for L1 and L2
solutions = solve({eq1, eq2}, {L1, L2}): eq1 = b5*L1^2 + (b9 + b7)*L1 + b6*L2^2 + b10*L2 + b8 = 0:
eq2 = b27*L1^4 – b32*L1^3 + b33*L1^2 – b34*L1 …
+ b28*L2^4 – b35*L2^3 + b36*L2^2 – b37*L2 …
+ (b39 – b38 + b30 – b29 – b31) = 0:
%Solve the system for L1 and L2
solutions = solve({eq1, eq2}, {L1, L2}): solve MATLAB Answers — New Questions
To generate vertice mesh from a series of contours
Hello,
As beginner in MATLAB, now I have a series of contours, which define a structure. On each contour there are isolated points whose cartesian coordinates are known. Now I would like to generate a mesh from these contours (or points). The _MyRobustCrust.m_ from file exchange does generate a mesh with faces, but without vertices’ coordinates. And the vertices are needed for my calculation.
Does any one have any hints? Thank you very much.
ErhongHello,
As beginner in MATLAB, now I have a series of contours, which define a structure. On each contour there are isolated points whose cartesian coordinates are known. Now I would like to generate a mesh from these contours (or points). The _MyRobustCrust.m_ from file exchange does generate a mesh with faces, but without vertices’ coordinates. And the vertices are needed for my calculation.
Does any one have any hints? Thank you very much.
Erhong Hello,
As beginner in MATLAB, now I have a series of contours, which define a structure. On each contour there are isolated points whose cartesian coordinates are known. Now I would like to generate a mesh from these contours (or points). The _MyRobustCrust.m_ from file exchange does generate a mesh with faces, but without vertices’ coordinates. And the vertices are needed for my calculation.
Does any one have any hints? Thank you very much.
Erhong mesh, face, vertices MATLAB Answers — New Questions
how to mesh a geometry from matlab in gmsh
hi…
as part of my final project i have created the geometry of the cross section of a dam, in matlab, using an isogeometric numerical method code….
i have been asked to use the control points of this geometry, to mesh it on gmsh software, so that to compare the 2 methods, by finding the nodal coordinates and the connective matrix from the gmsh…
i have never used a meshing software before and i am a bit unfamiliar with the concepts of nodal coordinates and connective matrix i am supposed to find….
i know this is a more gmsh and finite element related question, however i would appreciate any help from this blog….
thanks in advance!hi…
as part of my final project i have created the geometry of the cross section of a dam, in matlab, using an isogeometric numerical method code….
i have been asked to use the control points of this geometry, to mesh it on gmsh software, so that to compare the 2 methods, by finding the nodal coordinates and the connective matrix from the gmsh…
i have never used a meshing software before and i am a bit unfamiliar with the concepts of nodal coordinates and connective matrix i am supposed to find….
i know this is a more gmsh and finite element related question, however i would appreciate any help from this blog….
thanks in advance! hi…
as part of my final project i have created the geometry of the cross section of a dam, in matlab, using an isogeometric numerical method code….
i have been asked to use the control points of this geometry, to mesh it on gmsh software, so that to compare the 2 methods, by finding the nodal coordinates and the connective matrix from the gmsh…
i have never used a meshing software before and i am a bit unfamiliar with the concepts of nodal coordinates and connective matrix i am supposed to find….
i know this is a more gmsh and finite element related question, however i would appreciate any help from this blog….
thanks in advance! finite elements, meshing, comparing numerical methods MATLAB Answers — New Questions
creating mesh from geo file in gmsh using matlab?
Hello All,
I am trying to create a mesh file from a geo file that is created by MATLAB.
Can I directly call gmsh and do meshing through some command in MATLAB?
I have seen few examples but not so clear. It will be great if someone can help me to do the meshing.
I have attached my geo file. Its a txt version.
Thanking you in advance,
kmHello All,
I am trying to create a mesh file from a geo file that is created by MATLAB.
Can I directly call gmsh and do meshing through some command in MATLAB?
I have seen few examples but not so clear. It will be great if someone can help me to do the meshing.
I have attached my geo file. Its a txt version.
Thanking you in advance,
km Hello All,
I am trying to create a mesh file from a geo file that is created by MATLAB.
Can I directly call gmsh and do meshing through some command in MATLAB?
I have seen few examples but not so clear. It will be great if someone can help me to do the meshing.
I have attached my geo file. Its a txt version.
Thanking you in advance,
km gmsh, mesh, workspace MATLAB Answers — New Questions
How can I generate a mesh of quadrilaterals for a given 2D surface using MATLAB?
Does somebody know, how to simply and theoretically generate a mesh of quadrilaterals on a given surface?
The surface is in the x,y-plane and might also have curved borders.
I have searched on google and found like tons and tons of informations and also free software to take over this Job, but I really would like to know, how I can generate a mesh of quadrilateral elements which corresponds to a given surface just on my own.
So where is the best place to start? I need to develop my own understanding and also my own spaghetti code for this task.
Given the borders of and the interior of a 2D surface, how or where should I start in order to get my ‘new’ vertices on the interior of the surface? How do I know, how many quadrilateral elements and corresponding vertices do I need?
Thank you for your help and support in advance.
Regards
Ahmed HossamDoes somebody know, how to simply and theoretically generate a mesh of quadrilaterals on a given surface?
The surface is in the x,y-plane and might also have curved borders.
I have searched on google and found like tons and tons of informations and also free software to take over this Job, but I really would like to know, how I can generate a mesh of quadrilateral elements which corresponds to a given surface just on my own.
So where is the best place to start? I need to develop my own understanding and also my own spaghetti code for this task.
Given the borders of and the interior of a 2D surface, how or where should I start in order to get my ‘new’ vertices on the interior of the surface? How do I know, how many quadrilateral elements and corresponding vertices do I need?
Thank you for your help and support in advance.
Regards
Ahmed Hossam Does somebody know, how to simply and theoretically generate a mesh of quadrilaterals on a given surface?
The surface is in the x,y-plane and might also have curved borders.
I have searched on google and found like tons and tons of informations and also free software to take over this Job, but I really would like to know, how I can generate a mesh of quadrilateral elements which corresponds to a given surface just on my own.
So where is the best place to start? I need to develop my own understanding and also my own spaghetti code for this task.
Given the borders of and the interior of a 2D surface, how or where should I start in order to get my ‘new’ vertices on the interior of the surface? How do I know, how many quadrilateral elements and corresponding vertices do I need?
Thank you for your help and support in advance.
Regards
Ahmed Hossam finite elements, meshing, quadrilateral meshes, surface, 2d MATLAB Answers — New Questions
How do I access all the advanced printer settings in Matlab 2026a?
How do I access all the advanced settings of a printer in 2026a? The dialog box only gives me a small subset. I had no issues accessing these settings in 2024aHow do I access all the advanced settings of a printer in 2026a? The dialog box only gives me a small subset. I had no issues accessing these settings in 2024a How do I access all the advanced settings of a printer in 2026a? The dialog box only gives me a small subset. I had no issues accessing these settings in 2024a printing, figures, printer settings MATLAB Answers — New Questions
Integral from a function that has a singularity
Hello
I want to take an integral from the function that has a singularity(pole), by quadgk but this common don’t give a right answer .for instance an integral of the function 1/(x-1) from(-2,2)
anyone can guide me
thanksHello
I want to take an integral from the function that has a singularity(pole), by quadgk but this common don’t give a right answer .for instance an integral of the function 1/(x-1) from(-2,2)
anyone can guide me
thanks Hello
I want to take an integral from the function that has a singularity(pole), by quadgk but this common don’t give a right answer .for instance an integral of the function 1/(x-1) from(-2,2)
anyone can guide me
thanks quadgk-numerical integral-singularity MATLAB Answers — New Questions
LOW INERTIA SYNCHRONOUS GENERATOR INSTABILITY
I have an HVDC system. The terminals include an HVDC inverter 1000MW rated, a RES 1000MW rated, another inverter 500MW, a load and a generator using synchronous machine. When i use a machine rating at 1000 MVA, everything works. When i try to reduce the rating to 500MVA maximum, in order to have a case where a country is in its critical case of lower inertia, i get instability when both inverters (1000MW and 500MW) are connected to the system. when i disconnect one of them the system is stable. For the synchronous machine i only changed the Rated power and the transformer voltage to scale down. not the H etc.
Does anyone know how can i fix this?I have an HVDC system. The terminals include an HVDC inverter 1000MW rated, a RES 1000MW rated, another inverter 500MW, a load and a generator using synchronous machine. When i use a machine rating at 1000 MVA, everything works. When i try to reduce the rating to 500MVA maximum, in order to have a case where a country is in its critical case of lower inertia, i get instability when both inverters (1000MW and 500MW) are connected to the system. when i disconnect one of them the system is stable. For the synchronous machine i only changed the Rated power and the transformer voltage to scale down. not the H etc.
Does anyone know how can i fix this? I have an HVDC system. The terminals include an HVDC inverter 1000MW rated, a RES 1000MW rated, another inverter 500MW, a load and a generator using synchronous machine. When i use a machine rating at 1000 MVA, everything works. When i try to reduce the rating to 500MVA maximum, in order to have a case where a country is in its critical case of lower inertia, i get instability when both inverters (1000MW and 500MW) are connected to the system. when i disconnect one of them the system is stable. For the synchronous machine i only changed the Rated power and the transformer voltage to scale down. not the H etc.
Does anyone know how can i fix this? simpowersystems, synchronous generator, inertia, simulink, power_electronics_control MATLAB Answers — New Questions
using imaginary notation gives an error (-J)
Hi,
I am fairly new to matlab but used it years ago and have forgotten a lot.
I have downloaded an m file which should work but provides an error when encountering the following line of code.
u2=-J*u2.*q1; and there are two carrots underneath the "q1".
Can someone provide a suggestion as to how to interpret this error?
Thank You
TomHi,
I am fairly new to matlab but used it years ago and have forgotten a lot.
I have downloaded an m file which should work but provides an error when encountering the following line of code.
u2=-J*u2.*q1; and there are two carrots underneath the "q1".
Can someone provide a suggestion as to how to interpret this error?
Thank You
Tom Hi,
I am fairly new to matlab but used it years ago and have forgotten a lot.
I have downloaded an m file which should work but provides an error when encountering the following line of code.
u2=-J*u2.*q1; and there are two carrots underneath the "q1".
Can someone provide a suggestion as to how to interpret this error?
Thank You
Tom imaginary -j MATLAB Answers — New Questions
Innerjoin when a table contains user-defined objects
I have two tables that I wish to innerjoin() according to the topThick and botThick columns, which are the same in both tables. Why does this fail when Tright contains a column with objects of a user-defined class (here, myclass)?
load testdata
Tleft, Tright
innerjoin(Tleft, Tright)I have two tables that I wish to innerjoin() according to the topThick and botThick columns, which are the same in both tables. Why does this fail when Tright contains a column with objects of a user-defined class (here, myclass)?
load testdata
Tleft, Tright
innerjoin(Tleft, Tright) I have two tables that I wish to innerjoin() according to the topThick and botThick columns, which are the same in both tables. Why does this fail when Tright contains a column with objects of a user-defined class (here, myclass)?
load testdata
Tleft, Tright
innerjoin(Tleft, Tright) table, innerjoin MATLAB Answers — New Questions
Why is MATLAB slow after moving files to network drive?
The execution time in MATLAB is much longer when executed from a network drive compared to a local directory. For example, "genpath" takes a few seconds from a local directory, but it takes several minutes from a network drive.
Why is MATLAB slow during startup and when performing specific operations, such as "genpath", after moving files to a network drive?The execution time in MATLAB is much longer when executed from a network drive compared to a local directory. For example, "genpath" takes a few seconds from a local directory, but it takes several minutes from a network drive.
Why is MATLAB slow during startup and when performing specific operations, such as "genpath", after moving files to a network drive? The execution time in MATLAB is much longer when executed from a network drive compared to a local directory. For example, "genpath" takes a few seconds from a local directory, but it takes several minutes from a network drive.
Why is MATLAB slow during startup and when performing specific operations, such as "genpath", after moving files to a network drive? slow, matalb, network, files MATLAB Answers — New Questions
every restart of Matlab path is lost
where is may pathdef directorywhere is may pathdef directory where is may pathdef directory pathdef MATLAB Answers — New Questions
starting matlab after intall on linux
Iam using Debian. I just installed matlab 2026a. It seemed that everything was fine during installation.
When I try to start matlab, I see a flu window. In front of that window I see a blue small page writing MATLAB. It does not go away and I cannot use matlab. How can I solve this?Iam using Debian. I just installed matlab 2026a. It seemed that everything was fine during installation.
When I try to start matlab, I see a flu window. In front of that window I see a blue small page writing MATLAB. It does not go away and I cannot use matlab. How can I solve this? Iam using Debian. I just installed matlab 2026a. It seemed that everything was fine during installation.
When I try to start matlab, I see a flu window. In front of that window I see a blue small page writing MATLAB. It does not go away and I cannot use matlab. How can I solve this? starting matlab, linux MATLAB Answers — New Questions
It seems like Simulation of Cubesat and eclipse time is not correct
Hello,
I am extending the the cubesat simulation project [open(‘asbCubeSatVehicleTemplate.sltx’)] template with some functions. Therefore I need to know if the sun is in view or not. Fortunately there is a block that calculates it and gives out 1 when sun is in view and 0 when it is not.
But it seems like this is not correct when I compare the boolean to the visualization.
I simulated half an orbit on the dark side of the earth, but in the middle of the simulation the satellite sees the sun again.
Can someone help me to fix this problem mathematecally or doas the visualization is not correct?
Best regards.Hello,
I am extending the the cubesat simulation project [open(‘asbCubeSatVehicleTemplate.sltx’)] template with some functions. Therefore I need to know if the sun is in view or not. Fortunately there is a block that calculates it and gives out 1 when sun is in view and 0 when it is not.
But it seems like this is not correct when I compare the boolean to the visualization.
I simulated half an orbit on the dark side of the earth, but in the middle of the simulation the satellite sees the sun again.
Can someone help me to fix this problem mathematecally or doas the visualization is not correct?
Best regards. Hello,
I am extending the the cubesat simulation project [open(‘asbCubeSatVehicleTemplate.sltx’)] template with some functions. Therefore I need to know if the sun is in view or not. Fortunately there is a block that calculates it and gives out 1 when sun is in view and 0 when it is not.
But it seems like this is not correct when I compare the boolean to the visualization.
I simulated half an orbit on the dark side of the earth, but in the middle of the simulation the satellite sees the sun again.
Can someone help me to fix this problem mathematecally or doas the visualization is not correct?
Best regards. cubesat, aerospace toolbox, sun in view, cubesat simulation project MATLAB Answers — New Questions
MATLAB Randomly Changes Values in Array to Scientific Notation
I have a script that reads inputs from an excel file, then stores specific arrays that I need, as different variables.
These will later need to be written to an output txt file along with other strings (this output needs to be a specific format so it can feed an executable).
My problem is that when I read the data from the excel file, MATLAB keeps changing only two of the values to scientific notation.
My code is structured like so:
DATAINEED = readtable(fullfile(input_location,filename));
array1 = unique(DATAINEED.array1);
array2 = unique(DATAINEED.array2);
My problem is MATLAB then stores "array1" like so when I open the variable:
1000
2000
3000
4e+03
5000
6e+03
If I type "array1" in the command window, it prints out just fine (1000, 2000, 3000, 4000…etc.)
The problem is, if I try to print the variable along with another string so it can feed into the text file, it keeps that weird scientific notation for the couple of values.
I’m using the following code:
OutputRow1 = "array1 has: "+sprintf(‘%d ‘,array1’);
This results in:
OutputRow1 =
"array1 has: 1000 2000 3000 4e+03 5000 6e+03"
Array 2 is completely fine (also an array of numbers, but not in the thousands). I’ve tried format short g and long g, doesn’t help. Wondering if anyone has any insights, suggestions or other ways to accomplish what I need.I have a script that reads inputs from an excel file, then stores specific arrays that I need, as different variables.
These will later need to be written to an output txt file along with other strings (this output needs to be a specific format so it can feed an executable).
My problem is that when I read the data from the excel file, MATLAB keeps changing only two of the values to scientific notation.
My code is structured like so:
DATAINEED = readtable(fullfile(input_location,filename));
array1 = unique(DATAINEED.array1);
array2 = unique(DATAINEED.array2);
My problem is MATLAB then stores "array1" like so when I open the variable:
1000
2000
3000
4e+03
5000
6e+03
If I type "array1" in the command window, it prints out just fine (1000, 2000, 3000, 4000…etc.)
The problem is, if I try to print the variable along with another string so it can feed into the text file, it keeps that weird scientific notation for the couple of values.
I’m using the following code:
OutputRow1 = "array1 has: "+sprintf(‘%d ‘,array1’);
This results in:
OutputRow1 =
"array1 has: 1000 2000 3000 4e+03 5000 6e+03"
Array 2 is completely fine (also an array of numbers, but not in the thousands). I’ve tried format short g and long g, doesn’t help. Wondering if anyone has any insights, suggestions or other ways to accomplish what I need. I have a script that reads inputs from an excel file, then stores specific arrays that I need, as different variables.
These will later need to be written to an output txt file along with other strings (this output needs to be a specific format so it can feed an executable).
My problem is that when I read the data from the excel file, MATLAB keeps changing only two of the values to scientific notation.
My code is structured like so:
DATAINEED = readtable(fullfile(input_location,filename));
array1 = unique(DATAINEED.array1);
array2 = unique(DATAINEED.array2);
My problem is MATLAB then stores "array1" like so when I open the variable:
1000
2000
3000
4e+03
5000
6e+03
If I type "array1" in the command window, it prints out just fine (1000, 2000, 3000, 4000…etc.)
The problem is, if I try to print the variable along with another string so it can feed into the text file, it keeps that weird scientific notation for the couple of values.
I’m using the following code:
OutputRow1 = "array1 has: "+sprintf(‘%d ‘,array1’);
This results in:
OutputRow1 =
"array1 has: 1000 2000 3000 4e+03 5000 6e+03"
Array 2 is completely fine (also an array of numbers, but not in the thousands). I’ve tried format short g and long g, doesn’t help. Wondering if anyone has any insights, suggestions or other ways to accomplish what I need. array, scientific notation, matlab, sprintf, storing variables, double MATLAB Answers — New Questions
Question regarding Virtual Tractor steering logic in the Reverse-Capable Motion Planning example
I am currently exploring the tractor-trailer reversing control logic used in the Navigation Toolbox example titled "Reverse-Capable Motion Planning for Tractor-Trailer Model Using plannerControlRRT." While analyzing the helper files, I came across the virtualToActualSteering function inside exampleHelperPurePursuitGetSteering.m. The code comments explicitly state that this function was generated by the Symbolic Math Toolbox version 8.6.
Here is the generated code block:
function alphaDes = virtualToActualSteering(beta, L1, L2, M)
%virtualToActualSteering Convert trailer’s virtual steer command to truck steering angle
%
% This function was generated by the Symbolic Math Toolbox version 8.6.
% 13-Aug-2020 15:29:19
t2 = sign(beta);
t3 = L2.^2;
t4 = beta.*t2;
t5 = tan(t4);
t6 = t5.^2;
t7 = t6+1.0;
alphaDes = t2.*atan(-(L1.*M.*t5-sqrt(t7).*abs(t5).*sqrt(L1.^2.*t3))./(t3.*t7-M.^2));
end
I would like to deeply understand how this mathematical relationship is derived. Specifically, I want to know which base kinematic equations, differential constraints, and geometric relationships of the truck-trailer system were fed into the Symbolic Math Toolbox to yield this exact analytical solution. Could anyone share the underlying theoretical background, the differential equations involved, or the symbolic derivation steps used to achieve this exact formulation?
Thank you in advance for your help.I am currently exploring the tractor-trailer reversing control logic used in the Navigation Toolbox example titled "Reverse-Capable Motion Planning for Tractor-Trailer Model Using plannerControlRRT." While analyzing the helper files, I came across the virtualToActualSteering function inside exampleHelperPurePursuitGetSteering.m. The code comments explicitly state that this function was generated by the Symbolic Math Toolbox version 8.6.
Here is the generated code block:
function alphaDes = virtualToActualSteering(beta, L1, L2, M)
%virtualToActualSteering Convert trailer’s virtual steer command to truck steering angle
%
% This function was generated by the Symbolic Math Toolbox version 8.6.
% 13-Aug-2020 15:29:19
t2 = sign(beta);
t3 = L2.^2;
t4 = beta.*t2;
t5 = tan(t4);
t6 = t5.^2;
t7 = t6+1.0;
alphaDes = t2.*atan(-(L1.*M.*t5-sqrt(t7).*abs(t5).*sqrt(L1.^2.*t3))./(t3.*t7-M.^2));
end
I would like to deeply understand how this mathematical relationship is derived. Specifically, I want to know which base kinematic equations, differential constraints, and geometric relationships of the truck-trailer system were fed into the Symbolic Math Toolbox to yield this exact analytical solution. Could anyone share the underlying theoretical background, the differential equations involved, or the symbolic derivation steps used to achieve this exact formulation?
Thank you in advance for your help. I am currently exploring the tractor-trailer reversing control logic used in the Navigation Toolbox example titled "Reverse-Capable Motion Planning for Tractor-Trailer Model Using plannerControlRRT." While analyzing the helper files, I came across the virtualToActualSteering function inside exampleHelperPurePursuitGetSteering.m. The code comments explicitly state that this function was generated by the Symbolic Math Toolbox version 8.6.
Here is the generated code block:
function alphaDes = virtualToActualSteering(beta, L1, L2, M)
%virtualToActualSteering Convert trailer’s virtual steer command to truck steering angle
%
% This function was generated by the Symbolic Math Toolbox version 8.6.
% 13-Aug-2020 15:29:19
t2 = sign(beta);
t3 = L2.^2;
t4 = beta.*t2;
t5 = tan(t4);
t6 = t5.^2;
t7 = t6+1.0;
alphaDes = t2.*atan(-(L1.*M.*t5-sqrt(t7).*abs(t5).*sqrt(L1.^2.*t3))./(t3.*t7-M.^2));
end
I would like to deeply understand how this mathematical relationship is derived. Specifically, I want to know which base kinematic equations, differential constraints, and geometric relationships of the truck-trailer system were fed into the Symbolic Math Toolbox to yield this exact analytical solution. Could anyone share the underlying theoretical background, the differential equations involved, or the symbolic derivation steps used to achieve this exact formulation?
Thank you in advance for your help. truck-trailer MATLAB Answers — New Questions
Issue with MATLAB‑Generated PowerPoint Slides
hello,
I am encountering a problem when trying to format a picture that I insert into a PowerPoint slide generated from MATLAB using the Report Generator toolbox, mlreportgen.ppt? Specifically, I cannot apply a solid border around the image.
I’ve attached a MATLAB script that creates a figure and inserts it into the presentation. I’ve tried several approaches (e.g., setting the BorderColor, BorderWidth, and using a PictureStyle), but none of them produce any border, they appears to be ignored. I have tried vers 2022a and 2025a.
Could someone advise on the correct way to add a solid, colored border to an image in a PPT slide.hello,
I am encountering a problem when trying to format a picture that I insert into a PowerPoint slide generated from MATLAB using the Report Generator toolbox, mlreportgen.ppt? Specifically, I cannot apply a solid border around the image.
I’ve attached a MATLAB script that creates a figure and inserts it into the presentation. I’ve tried several approaches (e.g., setting the BorderColor, BorderWidth, and using a PictureStyle), but none of them produce any border, they appears to be ignored. I have tried vers 2022a and 2025a.
Could someone advise on the correct way to add a solid, colored border to an image in a PPT slide. hello,
I am encountering a problem when trying to format a picture that I insert into a PowerPoint slide generated from MATLAB using the Report Generator toolbox, mlreportgen.ppt? Specifically, I cannot apply a solid border around the image.
I’ve attached a MATLAB script that creates a figure and inserts it into the presentation. I’ve tried several approaches (e.g., setting the BorderColor, BorderWidth, and using a PictureStyle), but none of them produce any border, they appears to be ignored. I have tried vers 2022a and 2025a.
Could someone advise on the correct way to add a solid, colored border to an image in a PPT slide. matlab generated powerpoint slides MATLAB Answers — New Questions
installation question. I downloaded for an offline installation since I have an installation key. However, when I run the installer from the downloaded files, nothing runs.
installation question. I downloaded for an offline installation since I have an installation key. However, when I run the installer from the downloaded files, nothing runs. Not even a splash window. How do I fix this? Thanks.
R2026a. Mac Silicon.installation question. I downloaded for an offline installation since I have an installation key. However, when I run the installer from the downloaded files, nothing runs. Not even a splash window. How do I fix this? Thanks.
R2026a. Mac Silicon. installation question. I downloaded for an offline installation since I have an installation key. However, when I run the installer from the downloaded files, nothing runs. Not even a splash window. How do I fix this? Thanks.
R2026a. Mac Silicon. installation, file installation key MATLAB Answers — New Questions
Possible to use box or violin plots, with unequal x and y axis spacing?
We are attempting to show, in one plot, the differences in values (through time) observed by three different instrument types. These instruments were measuring fluctuations in the speed of a fluid at different elevations above the bed, for the same time period (60 seconds). We deployed a vertical transect of 9 instruments of type A, at every 10 cm, recording data at 2 Hz. We delpoyed 2 of instrument type B, at 0.5 and 1.0m, recording data at 32 Hz. We have obsevrations from instrument C, at every 10 cm (up to 1m), at 240 Hz. What I would like to do, is plot the data as:
x axis: shear velocity value
y axis: elevation of observation
data points: box or violins plots of the data observed at that elevation, to represent the distribution of values (variable along the x axis over the entire 60 sec) at a constant elevation (y axis) with colors indicating which instrument.
I’ve attached a sketch of what I envision. The box plots will show the distribution of values in time observed by each instrument, at each elevation. I cannot find a way to create this plot (I’ve searched and searched, but must not be using the right combination of terms). Do any of you know of existing commands? Or perhaps have suggestions for how to write my own function(s) to create this?We are attempting to show, in one plot, the differences in values (through time) observed by three different instrument types. These instruments were measuring fluctuations in the speed of a fluid at different elevations above the bed, for the same time period (60 seconds). We deployed a vertical transect of 9 instruments of type A, at every 10 cm, recording data at 2 Hz. We delpoyed 2 of instrument type B, at 0.5 and 1.0m, recording data at 32 Hz. We have obsevrations from instrument C, at every 10 cm (up to 1m), at 240 Hz. What I would like to do, is plot the data as:
x axis: shear velocity value
y axis: elevation of observation
data points: box or violins plots of the data observed at that elevation, to represent the distribution of values (variable along the x axis over the entire 60 sec) at a constant elevation (y axis) with colors indicating which instrument.
I’ve attached a sketch of what I envision. The box plots will show the distribution of values in time observed by each instrument, at each elevation. I cannot find a way to create this plot (I’ve searched and searched, but must not be using the right combination of terms). Do any of you know of existing commands? Or perhaps have suggestions for how to write my own function(s) to create this? We are attempting to show, in one plot, the differences in values (through time) observed by three different instrument types. These instruments were measuring fluctuations in the speed of a fluid at different elevations above the bed, for the same time period (60 seconds). We deployed a vertical transect of 9 instruments of type A, at every 10 cm, recording data at 2 Hz. We delpoyed 2 of instrument type B, at 0.5 and 1.0m, recording data at 32 Hz. We have obsevrations from instrument C, at every 10 cm (up to 1m), at 240 Hz. What I would like to do, is plot the data as:
x axis: shear velocity value
y axis: elevation of observation
data points: box or violins plots of the data observed at that elevation, to represent the distribution of values (variable along the x axis over the entire 60 sec) at a constant elevation (y axis) with colors indicating which instrument.
I’ve attached a sketch of what I envision. The box plots will show the distribution of values in time observed by each instrument, at each elevation. I cannot find a way to create this plot (I’ve searched and searched, but must not be using the right combination of terms). Do any of you know of existing commands? Or perhaps have suggestions for how to write my own function(s) to create this? box plot, violin plot, scatter plot MATLAB Answers — New Questions
What is actually Normalized Frequency?
I mean how could we define or describes it?
I am new to MATLAB. I have calculated the the Frequency of 1st zero, Level of 1st slobe, Level of 2nd slobe and level of 3rd slobe in Rectangular, Triangular, Hann, Hamming, Blackman etc type in Frequency Domain after typing "wintool" in the window command of the MATLAB. ThanksI mean how could we define or describes it?
I am new to MATLAB. I have calculated the the Frequency of 1st zero, Level of 1st slobe, Level of 2nd slobe and level of 3rd slobe in Rectangular, Triangular, Hann, Hamming, Blackman etc type in Frequency Domain after typing "wintool" in the window command of the MATLAB. Thanks I mean how could we define or describes it?
I am new to MATLAB. I have calculated the the Frequency of 1st zero, Level of 1st slobe, Level of 2nd slobe and level of 3rd slobe in Rectangular, Triangular, Hann, Hamming, Blackman etc type in Frequency Domain after typing "wintool" in the window command of the MATLAB. Thanks #matlab, # glossary MATLAB Answers — New Questions









