How to print ?

조회 수: 5 (최근 30일)
imT16
imT16 2021년 1월 20일
댓글: Rik 2021년 1월 22일
Plot the following polynomial using linear/linear scale, log/linear scale, linear/log scale and log/log scale.
y=4(x)^2 + 8x +1
  댓글 수: 3
Rik
Rik 2021년 1월 22일
Comment posted as flag by @Mihir Trivedi:
I dont want any books question to be here as i was unaware of this i posted one exercise and now i need to remove it. Thank you
Archive link to this question: here.
Rik
Rik 2021년 1월 22일
@Mihir Trivedi We generally discourage deletion of questions that have an answer. If you posted copyrighted material you can contact Mathworks support to have this thread removed.
Often student wanting to cheat, post their questions, get an answer, then claim that they posted copyrighted material, hoping the thread will be removed before their teachers notice and can fail them for academic fraud. I'm not saying this applies to you specifically, but that is my general experience.

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

채택된 답변

Masoud Dorvash
Masoud Dorvash 2021년 1월 21일
편집: Masoud Dorvash 2021년 1월 21일
Hi there,
If you do not have the data and just want to plot in the mentioned scale, you need to use these commands,
syms x y
y = 4*x^2 + 8*x + 1;
subplot(2, 2, 1), fplot(x,y)
subplot(2, 2, 2), fplot(x,y), set(gca, 'XScale', 'log')
subplot(2, 2, 3), fplot(x,y), set(gca, 'YScale', 'log')
subplot(2, 2, 4), fplot(x,y), set(gca, 'YScale', 'log', 'XScale', 'log')
hope this works for you.
  댓글 수: 3
Masoud Dorvash
Masoud Dorvash 2021년 1월 21일
Oh no, I'm sorry, I didn't see anywhere saying that this is a homework.
I'm so sorry if it's against the laws of this community, what should I do now? Should I delete the answere or what?
Walter Roberson
Walter Roberson 2021년 1월 21일
Not exactly against the rules, but against the best practices. Our experience is that students learn better when they are given guidance but not complete code. We prefer to teach concepts but have the students put the concepts together. Students that are only given complete code often do not understand how to put such code together in the future.
In this case, it would for example be fine to point out fplot and subplot and the axes xscale and yscale properties, especially as part of a description that said something like "In MATLAB, semilogx is implemented internally the same as regular plotting, but setting the XScale property to Log"

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Log Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by