How can I plot ln(1-x)/x using colon operator?

I am trying to plot f(x)=ln(1-x)/x for -10^(-15)<=x<=10^(-15) but when I run the program it says "Unable to perform assignment because the size of the left side is 1-by-1 and the size of the right side is 1-by-300." How can I alter my code so that it properly plots the function?
My code:
x = linspace(-10^(-15),10^(-15),300);
f = zeros(1,300);
for i = 1:300
f(:,i) = log((1-x(:,i))) ./ x;
end
f;
figure;
plot(x,f);

댓글 수: 2

x = linspace(-10^(-15),10^(-15),300);
f=log(1-x)./x;
plot(x,f);
emma
emma 2021년 2월 27일
Ah I was definitely overthinking the problem. Thank you for your timely help Kalyan!

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

 채택된 답변

Matt J
Matt J 2021년 2월 27일
x = linspace(-10^(-15),10^(-15),300);
f = log(1-x)./x;
plot(x,f)

댓글 수: 1

emma
emma 2021년 2월 27일
Thank you for the easy fix, and for showing the graph!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2021년 2월 27일

댓글:

2021년 2월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by