Unable to resolve this.scaledProject2 what causes this error?

조회 수: 1,221 (최근 30일)
Matieho Portia
Matieho Portia 2025년 9월 24일
댓글: Sam Chak 2025년 10월 25일 17:39
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'
  댓글 수: 10
Andrew
Andrew 2025년 10월 18일
I am having the same problem inside of a brand new installation of 2025b locally on a mac.
Sam Chak
Sam Chak 2025년 10월 25일 17:39
Same issue occurs in MATLAB Online (R2025b Update 1) when the mouse cursor is clicked at a specific location on the root locus.

댓글을 달려면 로그인하십시오.

답변 (1개)

Satyam
Satyam 2025년 10월 24일 6:33
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:
  1. Pick the (real, imag) coordinates of your point of interest.
  2. Find which entry in r is closest to your point.
  3. Use the column index of that entry to get the corresponding gain from k.
I hope it would resolve your query.

카테고리

Help CenterFile Exchange에서 Classical Control Design에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by