[DISCONTINUED] Wish-list for MATLAB Answer sections.
Walter Roberson
on 8 Feb 2011
Latest activity Reply by Walter Roberson
on 12 Feb 2023
This topic (which was not started by Mathworks) is for features you would like to see for this MATLAB Answers facility.
I suggest one wish per answer, so that people can vote for individual wishes.
What should you post where?
Next Gen threads (#1): features that would break compatibility with previous versions, but would be nice to have
@anyone posting a new thread when the last one gets too large (about 50 answers seems a reasonable limit per thread), please update this list in all last threads. (if you don't have editing privileges, just post a comment asking someone to do the edit)
578 Comments
Time DescendingThis particular Question is for discussion changes to the MATLAB Answers software itself -- the forum software that allows people to ask questions and make responses.
You should have created a new Question for that topic.
estimate the current height change along the course between point A=(sqrt3/2,1/2) and B=(1/2,sqrt3/2) identitfy 2 ways to estimate this height change one with derivatives one without
power = 2;
f = @(x, y) x .* y.^power;
A = [sqrt(3)/2, 1/2];
B = [1/2, sqrt(3)/2];
t = linspace(0, 1, 1000);
x = (1 - t) * A(1) + t * B(1);
y = (1 - t) * A(2) + t * B(2);
z = f(x, y);
height_change = z(end) - z(1);
disp(height_change);
this gave the answer of 0.1585 but it doesnt seem correct if i change the ^ to * the answer becomes 0 am i correctly computing what the question is asking
Dark theme/mode?
Users need acces to eig function
Option to bookmark an answer or the whole question thread. And this should be available to us in the profile dashboard. I bookmark the page right now. Thanks for this thread too!
The ability for editors/moderators to split and combine threads.
- A comment is actually an answer, so being able to change it to being an answer
- The OP replies to a question by creating an answer, so being able to change an answer to a comment of the selected thread.
For easy navigation and for the historians,
Anyone with edit privileges should feel free to update this whenever needed.
Well, after the last update of Matlab Answers my biggest wish is now to put the white space back between the answers! I don't know if this was a common request to get rid of it, but it looks dreadful with answers just all running into each other. I like white space in my code and I like it in an answers forum for the same reasons. It's unreadable without. Distinct answers should be properly delineated, rather than just a thin box around them all slammed together.
As far as I can see, Activity Feed / Manage Followed Content apparently only shows threads that I follow if there is a post to that thread after I follow it. That is, if I follow a thread but no one later posts to it, the thread does not show up in my Followed Content list.
I'd like to have all of my followed threads show up in that list, even if there has been no further activity. This is because I might want to post a suggestion or partial answer later, if the question remains unanswered.
Alternatively, could there be a way to filter by Unanswered+Followed?
Do we have to have the 'This website uses cookies...' message at the bottom of the Matlab Answers website every single day when we navigate to the page? I know the internet is now festooned with these kinds of messages, but it's not as though this one is giving options to select, it is just information. I've been signed into my account the whole time - I know nothing about website design, but can it not realise that if you are logged in you have already seen the message?!
Sign in to participate