Matlab cannot produce result
Show older comments
.
function Y = myFunction(d,n,theta)
Y = coinflip(100,100,0.25);
d = 100;
n = 100;
theta = 0.25;
Y = [ ];
for Dloop = 1:d
for Nloop = 1:n
X =randn(1);
Y = [Y;X];
end
end
Y(Y<theta) = 0;
Y(Y>theta) = 1;
histogram(Y)
(I get some errors as below -)
function Y = myFunction(d,n,theta)
↑
Error: Function definition not supported in this context.
Create functions in code file.
(another error is as below)
Error in myFunction (line 2)
Y = coinflip(100,100,0.25);
(other error is as below)
Y = coinflip(100,100,0.25);
Undefined function or variable 'coinflip'.
.
Here please help me to modify the errors and able to produce one correct output graph
.
15 Comments
sloppydisk
on 4 May 2018
The error messages are very descriptive. You cannot create a function in the command window and coinflip is not defined.
You probably meant to do this:
d= 100;
n = 100;
theta = 0.25;
output = coinflip(d,n,theta);
function Y = coinflip(d,n,theta)
Y = zeros(d*n, 1);
for Nloop = 1:n
for Dloop = 1:d
Y(Nloop*Dloop) = rand;
end
end
Y(Y<theta) = 0;
Y(Y>theta) = 1;
histogram(Y)
end
You should also preallocate Y as I showed. Not sure why you want a nested for loop or what your plans are though.
sloppydisk
on 4 May 2018
That's because you pasted it into the command window. You can't define functions in there, so instead you should save the code as an m-file and execute it in the editor.
Image Analyst
on 4 May 2018
Then define it. It's not built into MATLAB, so you need to define what that function does.
sloppydisk
on 4 May 2018
Much love to you my man, but I hope you will adopt a better attitude, because I don't think you're going to learn much this way.
vokoyo
on 4 May 2018
Image Analyst
on 4 May 2018
He already did help you and wrote some code that seems like it does what you want to do. I ran it (the attached code) and it ran fine. What did you do differently????
sloppydisk
on 4 May 2018
He pasted it into the command window :D
vokoyo
on 4 May 2018
Image Analyst
on 5 May 2018
There are no negative numbers. There is a bar centered at 0 with 8000 counts, and one centered at 1 with 2000 counts. If you want the x axis to show only the bar centers, then add this line as the last line of your coinflip() function:
xticks(0:1)
Answers (0)
Categories
Find more on Modulation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!