hwo to normalise the points with matlab command
Ältere Kommentare anzeigen
i am using this command for normalising -[p1,t1] = Normalise2DPts(p1); [p2,t2] = Normalise2DPts(p2); when i am running this in matlab it gives me this error- Undefined function or variable 'Normalise2DPts' can any one help me what command should i use or i am doing error p1 and p2 are p1 and p2 are 2xN matrix
3 Kommentare
Either write that function or get someone else who has written it to give it to you. Perhaps you meant to download it from here:
praveen rai
am 25 Sep. 2017
Star Strider
am 25 Sep. 2017
See my Answer for relevant details.
Antworten (1)
Star Strider
am 22 Sep. 2017
The function you want is in the File Exchange: normalise2dpts(pts) (link). You can download it through the linked page.
Also, MATLAB is case sensitive, so you will have to call it as:
[p2,t2] = normalise2dpts(p2);
3 Kommentare
praveen rai
am 22 Sep. 2017
Star Strider
am 22 Sep. 2017
You have to download it and copy it to your MATLAB user path. In Windows, this is: ‘C:\Users\-UserName-\Documents\MATLAB\’. Then you should be able to use it.
Kategorien
Mehr zu Downloads finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!