MATLAB QUESTIONS & EXPERT ANSWERS

Ask an expert. Trust the answer.
Your academic and career questions answered by verified experts.

Illustration
how to find bode plot,phase magnitude plot and template in control system?
nelson - 2025-01-08

z=1:0.5:10; a=1:0.5:5; num=kron(z,ones(1,length(a))); i=1:length(a); deno=zeros(9,3); deno(i,1)=1; deno(i,2)=a(i); den=repmat(deno,length(z),1); n=num...

How to compute control system's performance parameters?
John Doe - 2025-01-02

J = 0.2; b = 0.1; K = 0.2; R = 10; L = 5; s = tf('s'); p = K/((J*s+b)*(L*s+R)+K^2); step(p,200) [y,t]=step(p,200); stepinfo(y) With the following code...

Using a python trained neural network
Sania - 2024-12-05

Can you please tell me how I can save a neural network after training,in Jupiter notebook and retrieve it in MATLAB for testing on the TEST dataset. S...

What is the difference between tensorflow and GoogleNet?
QianYi - 2024-12-04

I know a little bit about both of them, but I am really new to AI. I just wonder if they are just competely different tools or they somehow related.Th...

How MATLAB makes the distinction between P-Cores and E-Cores?
Brahim - 2024-11-27

It is known that modern CPUs have both Performance cores (P-cores) and efficiency cores (E-cores), different types of CPU cores that have different pu...

How to explain an ANN graph?
AnneDixie - 2024-11-26

Hello, I'm trying to interpret an ANN graph for a paper, but I'm not sure where to start. Should I explain the detailed computations for each data poi...

How do I troubleshoot a MATLAB crash when trying to use the Python Interface?
monika_shah - 2024-11-24

Whenever I try to use some Python functions in MATLAB using the Python Interface, my MATLAB crashes. What can I do to avoid such a crash?...

Matlab mldivide returns NaN when there are multiple solutions
McCormack - 2024-11-18

I have two matrices:   A = [ -1 0 0; 1 1 -1; 0 -1 1 ]; B = [-1; 0; 1]; and I want to solve the following equation: Ax=B when I use mldivide functio...

MATLAB: Corr Function not working for Spearman
amina sundas - 2024-11-14

The Code   Rm = corr(timeModel, 'Type', 'Spearman'); Rm %First row of Rm contains the correlation coefficients between the values of avgExcTime and t...

How do I access a MATLAB UI function in another .m file?
Zucrode - 2024-11-07

I am attempting to declutter my MATLAB app code by separating some of the initialization into separate .m files. For this I have set up various files ...

Get a Free Consultation or a Sample Assignment Review!