What is changing in R2014b?
Mostrar comentarios más antiguos
Is there a published list of features that are changing with Matlab R2014b? I have been unable to install the pre-release, but I have received word that some of my FEX submissions do not work with R2014b. For example, I'd like to know what needs to be changed in my label function, and whether fixing it for R2014b will end up breaking it for previous versions.
5 comentarios
Star Strider
el 26 de Ag. de 2014
I believe there’s a confidentiality or non-disclosure agreement in the pre-release versions. I’m not certain you can discuss the content except with TMW.
Bill Rooker
el 15 de Sept. de 2014
Howdy y'all!
When be R2014b coming?
Toodles,
Billie Bob
Sean de Wolski
el 15 de Sept. de 2014
@Billie Bob:
This returns the right answer:
>> datenum(floor(now)+randi(1000))
You just have to guess my rng seed :)
Bill Rooker
el 29 de Sept. de 2014
Howdy y'all,
It be 2 weeks and no news...
Toodles,
Billie Bob
Sean de Wolski
el 3 de Oct. de 2014
Now :)
Respuesta aceptada
Más respuestas (6)
Chad Greene
el 23 de Sept. de 2014
2 votos
Daniel Shub
el 27 de Ag. de 2014
1 voto
I received an email from TMW, which I think borders on spam, about some of the new functionality in R2014b. As I have not downloaded the prerelease and it was an unsolicited email that did not suggest the information should not be circulated, I am pretty sure this is not covered by any sort of NDA
· Call MATLAB from Python- You will find documentation on the MATLAB Engine for Python under the MATLAB API for Other Languages in Advanced Software Development. See MATLAB Engine for Python.
· Call Python functionality from MATLAB - You will find documentation on the MATLAB Interface to Python under Calling External Functions in Advanced Software Development. See Call Python Libraries.
1 comentario
Star Strider
el 15 de Sept. de 2014
Editada: Star Strider
el 15 de Sept. de 2014
set(gca, 'XTickLabelRotation', 45);
EDIT — The Answer I was referring to was removed, so I suspect it is confidential information and should not have been released.
Sean de Wolski
el 3 de Oct. de 2014
Chad, the change you have to make is that handles in R2014b are no longer numbers. Thus checking isnumeric of a handle will no longer work:
assert(isnumeric(h)==1,'Input handle(s) h must be numeric.')
assert(isempty(get(0,'children'))==0,'No current axes are open.')
Instead, check:
ishghandle(h) % this works in <14b too
And 0 has been replaced by groot to represent the root object but 0 still works.
2 comentarios
Chad Greene
el 4 de Oct. de 2014
Sean de Wolski
el 6 de Oct. de 2014
Editada: Sean de Wolski
el 6 de Oct. de 2014
h will be a Line. A figure will be a, surprise(!), Figure. Using ishandle() or ishghandle() is the right way to test "handleness" in <14b too since pi is numeric and probably not an active handle.
h = plot(1:10)
h =
Line with properties:
Color: [0 0.4470 0.7410]
LineStyle: '-'
LineWidth: 0.5000
Marker: 'none'
MarkerSize: 6
MarkerFaceColor: 'none'
XData: [1 2 3 4 5 6 7 8 9 10]
YData: [1 2 3 4 5 6 7 8 9 10]
ZData: [1x0 double]
Show all properties
Andrew Reibold
el 25 de Ag. de 2014
0 votos
Release notes can be found here
They are not yet available for 2014b.
Image Analyst
el 26 de Ag. de 2014
0 votos
Did you get an email about downloading the prerelease version? If so, do that and check it out yourself.
1 comentario
Chad Greene
el 26 de Ag. de 2014
Royi Avital
el 3 de Oct. de 2014
0 votos
MATLAB R2014b is out.
I'm so disappointed Mathworks does nothing to improve the language speed.
Moreover, they are still stuck with CUDA instead of moving on to OpenCL for the GPU support.
What are they waiting for?
Julia is much faster and gaining traction and its Toolboxes are improving by day.
Very Disappointing.
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!