Unable to resolve this.scaledProject2 what causes this error?
1.374 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
G was used to create a tranfer function and it was used to plot the root locus but when pointing on the root locus the value of gain does not show, it says 'unable to resolve this.scaledProject2'
Respuestas (1)
Satyam
el 24 de Oct. de 2025
Hi,
Hi! I’ve seen this error before,'unable to resolve this.scaledProject2' , when trying to view the gain value by hovering over the root locus plot.
You can still get the gain values programmatically.
[r, k] = rlocus(G); % G is your transfer function
- r is an MxN matrix of root locations (each column corresponds to a different gain).
- k is a 1xN vector of gain values.
To find the gain for a specific root (or point) you’re interested in:
- Pick the (real, imag) coordinates of your point of interest.
- Find which entry in r is closest to your point.
- Use the column index of that entry to get the corresponding gain from k.
I hope it would resolve your query.
1 comentario
EDUARD
el 29 de Nov. de 2025 a las 8:00
How to fix the problem so that you can see the gain on the graph?
Ver también
Categorías
Más información sobre Classical Control Design en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!






