Answered
How do we solve Stellar Motion,Task 5
Hi, In my understanding in the given task you need to plot the graph using a base 10 logarithmic scale, use the loglog() func...

11 månader ago | 0

Answered
Co-Simulation between MSC ADMS View and MATLAB/Simulink---ERROR: PINPUT/0 is not defined in the data set. Command ignored. WARNING: Integrator HMAX could not be determined.
Hi, I understand that you are doing co-simulation in ADAMS and Simulink and getting errors, follow the link below for possible ...

11 månader ago | 0

Answered
How to create dataset from my tribological experimental data?
Hi, I understand that you want to train a neural network with multiple inputs and outputs, you can refer to the following docu...

11 månader ago | 0

Answered
Generating LTE Waveforms with Reference Signal Only
Hi Jianbin, As per my understanding of the case, you can achieve the desired custom LTE waveform configuration by using MATLAB'...

11 månader ago | 0

Answered
How to add wireless capability to DC Electric Charging Vehicle Diagram?
Hi Arnab, To merge the DC EV Charger model with the wireless transceiver model, you can follow these general steps: 1. Open b...

11 månader ago | 0

Answered
Access variable names for Simscape block through code
Hi, In my understanding you want to access the variable names from a simscape model you can use the following function [names...

11 månader ago | 1

Answered
Stateflow variable is not exported as XML
Hi, In my understanding you are trying to export the stateflow variables to XML format, Please use the following command: sav...

11 månader ago | 0

Answered
Fatal error on startup in 2023a version
Hi Akshat, This error can occur when MATLAB get's corrupted during the installation process. To resolve this issue, disable ...

11 månader ago | 0

Answered
In a Simulink model, how to generate baseband signal please?
Hi Swamy, I understand you are looking for a method to generate a baseband signal as a source in Simulink. While there is no su...

11 månader ago | 0

Answered
RF energy harvesting stimulation
Hi Sreeraj, As you are a beginner, I suggest you to kindly go through the MATLAB onramp and Simulink onramp. To simulate RF ...

11 månader ago | 0

Answered
"save the file using UTF-8 encoding instead"
Hi Francisco, Please find this MATLAB answer: https://in.mathworks.com/matlabcentral/answers/894962-i-cannot-save-matlab-e...

11 månader ago | 0

| accepted

Answered
How find x, y, z position of .grd. file with an initial point and distace?
Hi, You can follow the following steps for finding the coordinates: Use grdread2 to read .grd file. Convert the lati...

11 månader ago | 0

Answered
What causes UIAxes gesture interactions to become disabled?
Hi, In my understanding from the information that was provided by you, here are two possible workarounds: 1) Enable the inter...

11 månader ago | 0

Answered
Simulink Example ''Modeling and Testing an 802.11ax RF Receiver with 5G Interference''
Hi MD Abdul, In the context of the example you mentioned, the symbol index refers to the index or position of each symbol withi...

12 månader ago | 0

Answered
hydraulic actuator in simulink
Hi Siddharth! I understand that you are interested in designing a hydraulic actuator in Simulink. To assist you, I recommend re...

12 månader ago | 0

Answered
How to find inverse of Bessel function of first kind?
Hi Jacky! Here's an example MATLAB code that demonstrates how to find the inverse of the Bessel function of the first kind usin...

12 månader ago | 0

Answered
How to return a true/false logical array from a string array of repeating numbers?
I think this may work: A = [3 3 2 1 5 1 0 4]; [uniqueA i j] = unique(A,'first'); idRep = find(not(ismember(1:numel(A),i))...

ungefär 2 år ago | 1

| accepted

Answered
How to find euclidean distances of each column of the two matrices?
Hi , You can do like this: A = [1 2;3 4] B = [4 2;7 4] Distance1 = sqrt(sum((A - B) .^ 2))

ungefär 2 år ago | 0

Answered
How to name rows with same names?
Hi, A similar question has been answered earlier. Please refer this MATLAB answer for assigning same row name for a range of r...

ungefär 2 år ago | 0

Answered
Extracting Info from the table
If you want to access data from multiple variables at once, you can index with curly braces. Inside the curly braces, you can s...

ungefär 2 år ago | 1

Answered
Determining Smith Form of a rectangular matrix
Hi, I think this may help you https://in.mathworks.com/matlabcentral/fileexchange/60410-mnsmithform-a. Open the Functions tab,...

ungefär 2 år ago | 0

| accepted

Answered
how to merge twovgraphs
You can check out this documentation for plotting both graphs together: Display Data with Multiple x-Axes and y-Axes.

ungefär 2 år ago | 1

| accepted

Answered
create a matrix of maximums
To get maximum value for each column and the corresponding indices you can do the following: max_values = max(range_compressed_...

ungefär 2 år ago | 0

Answered
wireless power transfer efficiency
Hi, You can use the plot function to plot the graph for various values of K. As frequency will be a vector. You will have to ...

ungefär 2 år ago | 0

Answered
hey ,i am using this function to implement gradient descent but it returns only the theta value not the J_history value,Please help me in this situtation
Hi Ashok, Are you facing this same issue : https://in.mathworks.com/matlabcentral/answers/787299-gradient-descent-fix The an...

ungefär 2 år ago | 0

Answered
import multiple mat files together
Hi, You can use load for loading files, plot for plotting, and hold on and hold off for plotting multiple plots on one. Hold ...

ungefär 2 år ago | 0

Answered
Matalb 2021a uses 100% CPU and is running very slowly
Hi , You may checkout these two previous MATLAB answers: https://in.mathworks.com/matlabcentral/answers/484594-matlab-very-slo...

ungefär 2 år ago | 0

Answered
how to get an image from webcam
Hey, I think this may help you : Capture Live Image.

ungefär 2 år ago | 0