A little help?

6 views (last 30 days)
Aadam
Aadam on 11 Dec 2011
Hi there,
I am having a little problem with one of the questions for an assignment I have. I have less than basic knowlage of MALAB so this assignment is to break me in so to say.
The question states that I need to create a matrix with with the input values clamped in the range +- 1.
Any help would be much appreciated! :D
  1 Comment
Aadam
Aadam on 11 Dec 2011
Hi guys thanks for helping.
I don't think I made myself very clear or explained my puzzle very clearly. For this I apologise
I will have a second attempt now.(Please bare in mind i am not a very experianced programer):
On my question sheetI am given a return property that is defined as oneabs. This property needs to return the input values clamped in the range of +-1.
Now I think this is asking me to return everything inbeetween and clip everything higher than +1 as 1, and everything <-1 as -1.
I hope this is a little clearer.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 11 Dec 2011
Aadam: Based on your latest comment to your original question I would just make my code into a function. In file test.m:
function test()
% Generate sample data.
M = 10*rand(8) - 5; % Sample matrix.
% Clip the data to the range -1 to +1
oneabs = Clip(M)
% Clip to range (-1 to +1) if outside that range.
% Leave values alone if within that range.
function oneabs = Clip(M)
oneabs = M; % Initialize.
oneabs (M < -1) = -1;
oneabs (M > 1) = 1;

More Answers (5)

Fangjun Jiang
Fangjun Jiang on 11 Dec 2011
Matrix=[-0.1,0.2;-0.5,0.9]
Based on your latest update in comments, here is a solution
InMatrix=4*rand(5)-2;
OutMatrix=min(InMatrix,1);
OutMatrix=max(OutMatrix,-1)
  1 Comment
Jan
Jan on 11 Dec 2011
@Fangjun: "create a matrix with with the input values clamped in the range +- 1". Yes! I like the deeper message of this answer. +1
@Aadam: I do not think, that this answer solves your problem.

Sign in to comment.


Mohsen  Davarynejad
Mohsen Davarynejad on 11 Dec 2011
Matrix = 2*rand(10,10) - 1
  5 Comments
Mohsen  Davarynejad
Mohsen Davarynejad on 11 Dec 2011
Follow this:
B = A - min(A(:));
C=B./max(B(:));
D=2*C;
E=D-1;
Image Analyst
Image Analyst on 11 Dec 2011
You're scaling his data, which he didn't ask for.

Sign in to comment.


Image Analyst
Image Analyst on 11 Dec 2011
M = 10*rand(8) - 5; % Sample matrix.
% Now clip to range (-1 to +1)
M(M<-1) = -1;
M(M>1) = 1;
  4 Comments
Aadam
Aadam on 11 Dec 2011
have tried this but had an answer of oneabs: [1x1863 char]. a little confused. :s
Image Analyst
Image Analyst on 11 Dec 2011
No you didn't try it. You didn't try my code because I never mentioned oneabs. In fact I just copied and pasted my code into MATLAB, now that I'm on a computer that has it, and it ran fine and did exactly what I said and what you asked. You'd need to post your code for us to figure out what you did wrong.

Sign in to comment.


Jan
Jan on 11 Dec 2011
Another approach:
M = 10*rand(8) - 5; % Sample matrix. (Thanks IA!)
M = max(min(M, 1), -1);

Mohsen  Davarynejad
Mohsen Davarynejad on 11 Dec 2011
The Matrix of interest of poster is:
A = [1,2,3;4,5,6;7,8,9];
and the soloution is the following:
B = A - min(A(:));
C=2*B./max(B(:))-1;
  4 Comments
Mohsen  Davarynejad
Mohsen Davarynejad on 11 Dec 2011
@ Jan: Please take a look at Aadam's comment on my first post above, were he introduces his Matrix and asks for extra information on my code.
@ Image Analyst: Looking at the A matrix Aadam has in mind, the way you go is not correct!! The matrix elemets are between 1 and 9.
Image Analyst
Image Analyst on 11 Dec 2011
Mohsen, that matrix was in response to your question and as I mentioned it's not what any of us suggested because he somehow came up with some new matrix oneabs. So who knows why he cam up with that. Now if his matrix were really that (in the range 1-9) the simplest solution would simply be M = ones(1, length(M)); Of course he'd have no values less than 1 so there's be no reason to clip there like he originally required. But he said he DID need to clamp to -1 in his question and subject line. Neither Jan nor I sees anything at all where he says "scale my data" like you gave but we do see where he says "clamp my data." Though I do agree that your code does scale, which is fine if that's what he wants (despite saying something to the contrary). Aadam, please clarify: do you want scaling or clamping?

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!