[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
This 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?!
Is it worth to elaborate an old answer that's been accepted? Will anybody ever read it?
 
Wish:   A symbol to the left of the question, which indicates whether the question is on a "watch-list".
Problem: Many users do not understand how to use the markup button, {}Code, which results in formatting of text like the example below
.
if true
Error using assignin Unknown command option.
Error in cssm_c (line 20) assignin( 'base' , col_names(i) , num(:,i) );
end
.
Proposal: "{}Code" shall check whether any lines are selected and if not issue a warning. Or something better.
*A modest wish:*
- The tag "oop" should qualify the post for the Category: Object Oriented Programming.
New list has been created! http://www.mathworks.com/matlabcentral/answers/42413-wish-list-2-and-bug-reports-for-matlab-answers-itself
The time-stamps for the activities log and the flagged content log appear to be in GMT. This is inconsistent with the other time-stamps that the user sees and so can lead to some confusion.
Not a major problem ;-)
I have been thinking myself that we should start a volume 2. I would not delete anything here, though.
Ideally some of what is here should be moved to the new list. I did not want to just go ahead and create the new Answers, though, as that would not give proper credit to the people who originally proposed them.
I like Daniel's Idea about leaving this alone and starting a wish-list 2.0. I can't even load this whole page without IE8 dumping. Thus any new wishes from today I can't see. Here's my first:
-Once you hit a reputation of say 20, get rid of the "how to post an answer" comments that take up space.
Now that so many of the wishes have been implemented (thank you to TMW), should we deleted the implemented answers to make it easier to find the outstanding issues? Should we refer to the current version of answers as 2.0 and start a new wish-list for it?
The new layout is a brute waste of space. The information density is sometimes lower than 3 sentences per screen.
The new boxes around everything confuse my eyes.
Answers list in My Answers is sorted by old-to-new. It takes long time to go through the all answers and reach the latest one.
Please let me know if any sorting option exist to sort the Question list or Answer list. I have not found any such option ?
When I edit the Question at http://www.mathworks.com/matlabcentral/answers/42190-multiple-y-axis to reformat it, and Save, then the Save button flashes to Saving... and then reverts back to Save without the changes being saved.