已回答
How can I adjust FontWeight, FontSize and MarkerSize in legend and save the figure as eps.file without losing all these settings?
Hi, The issue you're experiencing with saving the figure as an EPS file and preserving the adjustments made to the legend prope...

1 year 前 | 0

已回答
app designer code section doesn't work when compiled as standalone .exe
Hi, The issue you're experiencing with the code when running the standalone .exe file could be due to the way the MATLAB Compil...

1 year 前 | 0

| 已接受

已回答
Plot aircraft dynamic trajectories
Hi, To plot trajectories of aircraft using 3D position data in MATLAB, you can utilize the built-in functions like plot3 or sca...

1 year 前 | 0

| 已接受

已回答
Image classification based on transfer learning using Alexnet
Hi, The code you provided is mostly correct for performing transfer learning using the AlexNet architecture. However, there are...

1 year 前 | 1

已回答
How to represent Globe Valves and Butterfly Valves?
Hi, In Simulink, there are several blocks you can use to represent valves in your turbine model, including the globe valve and ...

1 year 前 | 2

已回答
what is the wrong with my code?
Hi, check this z = 6; if z == 6 % Assign the desired value of y based on your requirements y = '6'; % Example: As...

1 year 前 | 0

| 已接受

已回答
Mixed DataType in action space
Hi, The choice between rlFiniteSetSpec and rlNumericSpec for the action space depends on the nature of the action you want to d...

1 year 前 | 0

| 已接受

已回答
The input dimension of self-attention
Hi, If you want to apply self-attention to two-dimensional images composed of two sequences, you can reshape the image into a s...

1 year 前 | 0

已回答
How to Plot taylor diagram for three time series
Hi, Hope this helps % Time series data time = datetime({'1-Jan-18', '1-Feb-18', '1-Mar-18', '1-Apr-18', '1-May-18', '1-Sep-18...

1 year 前 | 0

已回答
Feed Forward ANN Training using Back Propagation
Hi, Hope this resolves your issue % Define the input pattern and target output x = [1; 2; 3]; t = 1; % Define the initial...

1 year 前 | 0

已回答
FIR filter basic implementation problem
Hi, Check this clear all close all fm = 0.1; % message signal frequency Fs = 1; % sampling freq Ts = 1/Fs; % sampling ti...

1 year 前 | 0

| 已接受

已回答
How to 3d patch between 2 3d shapes (stl attached)
The error "unable to open file .stl" suggests that MATLAB is unable to find the STL file you are trying to import. In the first...

1 year 前 | 0

已回答
Convert the format of the time column in a timetable
Hi Pietro, Hope you are doing well, here is a code which can help you to check: % Create a sample timetable with daily time po...

1 year 前 | 0

已回答
How can I align a sequence of three data points?
Hi Sahu, Hope it helps. % define the data sequences data_A = [0 4 5 7 8 9]; data_B = [4 5 7 8 1 5 6]; data_C = [2 5 3 4 5 7...

1 year 前 | 0

已回答
analytical solution of Fraunhofer diffraction farfield diffraction from hole?
% Define the aperture diameter D = 100e-9; % m % Define the wavelength of the incident light lambda = 500e-9; % m % Defi...

1 year 前 | 0

已回答
file not found or permission denied
Hi, The "permission denied" error occurs when the user who is running the MATLAB program does not have write permissions for th...

1 year 前 | 0

已回答
Feed Forward ANN Training using Back Propagation
Hi Warren, Can you check this code for your need once: % Define the input and output patterns P = [1 -1 1]; T = 1; % Defi...

1 year 前 | 0

已回答
Will I get a free certificate for the completion of each: the self-paced courses MATLAB Onramp (free self-paced 2 hr) and MATLAB Fundamentals (free self-paced 16.5hr)?
Hi Lixin, Congratulations on almost completing the MATLAB Onramp course! MATLAB is a powerful tool for data analysis and visual...

1 year 前 | 0

已回答
I installed matlab2016 on my windows 10 system but it is not showing the app but in apps and features it is showing that i have installed it what could be the problem
Hi Priscah, There could be several reasons why MATLAB R2016a isn't showing up on your Windows 10 system. Here are a few things...

1 year 前 | 0

已回答
Error using trainNetwork Unexpected input size: All observations must have the same channel and spatial dimension sizes.
Hi Prasad, You can check this code, might help with your issue to a extent. Sure, I see the issue with your code. To address t...

1 year 前 | 0

已回答
How to install Polyspace on Linux
Hi Katsiaryna Yes, it is possible to install Polyspace products on a Linux server entirely using the command line. Here are the...

1 year 前 | 0

已回答
View a 2-d projection of a 3D object
Hi Lovett, The view function in MATLAB sets the camera viewpoint for the current figure, but it does not render the 3D object ...

1 year 前 | 0

已回答
ConstantLine not showing up in plotbrowser
Hi Pierre, By default, ConstantLines drawn with xline or yline may not show up in the Plot Browser when using MATLAB R2019b or ...

1 year 前 | 0

已回答
value assigned to variable might be unsured (Ln 12)
Hi Firas, I hope this resolves your issue, m = 45; % mass in kg k = 35000; % spring constant in N/m c = 1200; % damping coe...

1 year 前 | 1