Community Profile

photo

Chris Portal

Last seen: 1일 전 2016년부터 활동

Chris Portal serves as director of engineering for the MATLAB® Graphics, App Building, and Data Tools teams, delivering data visualizations, app building capabilities, and data exploration tools for MATLAB. Chris joined MathWorks in 1997 as a developer and has been involved in the development and evolution of a number of MathWorks products including MATLAB, Simulink®, PDE Toolbox, and version 1.0 of the Data Acquisition, Instrument Control, and Image Acquisition Toolboxes in the Test and Measurement product area. He is currently named in 15 patents, and holds a B.S. and M.Eng. in mechanical engineering from Cornell University.

통계

  • First Review
  • 3 Month Streak
  • Knowledgeable Level 4
  • Revival Level 1
  • First Answer

배지 보기

Content Feed

보기 기준

답변 있음
App Slow With UIAxes
Thank you @Adam Danz and @Ephraim Bryski. The additional info is useful. I see the same uifigure/uiaxes slowness Adam is showing...

3년 초과 전 | 5

| 수락됨

답변 있음
How to install GUIDE to App Designer migration tool?
You would need to download it from here: <https://www.mathworks.com/matlabcentral/fileexchange/66087-guide-to-app-designer-mi...

4년 초과 전 | 0

답변 있음
Using animatedline in Matlab App Designer?
Your callback is doing a “clear all”, which clears out all of the variables available at that point, which in this case are “app...

거의 5년 전 | 1

| 수락됨

답변 있음
Problem with auto reflow in app designer
Auto-reflow is different than the autoresize option. Autoresize will resize components for you when the window is resized. Reflo...

거의 5년 전 | 0

| 수락됨

답변 있음
How do display the contents of array in Listbox using app designer ???
See the documentation for an example: https://www.mathworks.com/help/matlab/ref/uilistbox.html#bujty2f-1 Basically, you config...

거의 5년 전 | 0

답변 있음
Why can I not plot in app designer?
The data doesn’t fit within your limits. By only specifying the A vector you mentioned, you are only specifying the Y axes value...

거의 5년 전 | 1

| 수락됨

답변 있음
Is it possible to run an App Designer app on an installation of Matlab which does not have App Designer?
App Designer apps do not depend on App Designer to run, but the apps use features that were first introduced in R2016a, which is...

5년 초과 전 | 0

| 수락됨

답변 있음
Trying to learn how to display an image using app designer
You can pass workspace variables to your app using a startup function and app input arguments. The approach is described here: ...

5년 초과 전 | 0

| 수락됨

답변 있음
Matlab app designer, overlaying images with transparency in UIAxes?
Using R2018a, I'm not able to reproduce this. This is the code I tried: I = imread('cameraman.tif'); f1 = imshow(I,'Pare...

5년 초과 전 | 1

답변 있음
How do I save data from a Web App into a local file ?
In R2018a, this would only be possible if you specify a network path to the WRITETABLE command for it to produce the file at tha...

5년 초과 전 | 1

답변 있음
Dynamic Option Values in UIDropdown using App Designer
You can do this by configuring your dropdown's values in the startup callback function. Right click on the figure background in ...

5년 초과 전 | 1

답변 있음
How to speed up UIAxes in App Designer
Hard to say for sure without seeing the surrounding code, but you may need a call to DRAWNOW in your for loop. Alternatively...

5년 초과 전 | 0

| 수락됨

답변 있음
Pairing MLAPP (AppDesigner) Apps With Other Classes
This is how I’d approach it: # Use the app window’s StartupFcn callback to initialize all your Class1, Class2, and Class3 obj...

거의 6년 전 | 0

답변 있음
How do I make an App written in App Designer Modal?
If you're using 18a or later, you can try using UIPROGRESSDLG to create an indeterminate progress bar while the secondary app is...

거의 6년 전 | 2

답변 있음
Access public property outside the app
You can take a look at this File Exchange submission to see how to do this in 16a and 16b releases of App Designer: <https://...

거의 6년 전 | 1

| 수락됨

답변 있음
Creating Multiwindow Apps in MATLAB 2016b
You can take a look at this File Exchange submission which does something similar and should work for 16a and 16b releases of Ap...

거의 6년 전 | 0

| 수락됨

답변 있음
Can Web Apps take input arguments?
Currently, it’s a limitation, but there’s a workaround. This is what the doc says: <https://www.mathworks.com/help/compiler/w...

거의 6년 전 | 0

| 수락됨

답변 있음
App designer dynamic properties
The answer in this other post describes how to do this in the general case if you’re creating multiple new components. If you ar...

거의 6년 전 | 0

답변 있음
Introduction of a new class properties inside its functions in App Designer.
The way to do this would be to add a property to your app called something like “NewComponents”. Every time you need to intro...

거의 6년 전 | 0

답변 있음
How to plot a 3D graphic with app designer ?
You can do this by calling your 3D plotting function and passing in the handle to your app axes: [X,Y] = meshgrid(1:0.5:10,...

거의 6년 전 | 1

답변 있음
How to pause/stop a Simulink model directly from App designer
You can do this by using the set_param and get_param functions to configure the SimulationCommand setting for your model. This d...

거의 6년 전 | 0

| 수락됨

답변 있음
How to Set App Designer Drop Down and List Box Data types
See the answer thread for the following post on how to address this: <https://www.mathworks.com/matlabcentral/answers/400550-...

거의 6년 전 | 0

| 수락됨

답변 있음
App Designer LIST BOX data type
The type for the Value property depends on how you've configured the listbox. There are basically 2 scenarios: # *Using Items...

거의 6년 전 | 0

답변 있음
Is it possible to Re-order App Properties
Unfortunately there is no way to do this as of R2018a. It is a known enhancement, but I will log an additional request for the t...

거의 6년 전 | 0

| 수락됨

답변 있음
Add static images with APP designer
There are currently 2 options available which are described here: https://www.mathworks.com/matlabcentral/answers/283215-insert...

거의 6년 전 | 1

답변 있음
Uidatepicker in app designer
You can pass the panel’s handle as the parent for the uidatepicker. The syntax is described here: <https://www.mathworks.com/...

거의 6년 전 | 0

답변 있음
Trisurf in App Designer
TRISURF doesn't appear to support an axes to be passed in as the first input argument. Instead, it can take it via PV pairs as f...

거의 6년 전 | 4

답변 있음
How can I open an external application from Matlab app designer
Your system is not going to know where your test data file lives, so you need to provide it more than just the name and extensio...

거의 6년 전 | 0

| 수락됨

답변 있음
Problems with BytesAvailableFcn in App designer
This was covered in a related post available here: <https://www.mathworks.com/matlabcentral/answers/276824-how-to-use-bytesav...

6년 초과 전 | 1

| 수락됨

답변 있음
2017b: Since install of 2017b, I cannot run App designer properly. It fails to load something and does not compile.
Can you try the following and see if that helps: rehash toolboxcache

6년 초과 전 | 0

더 보기