
Cris LaPierre
MathWorks
Statistics
RANK
25
of 262,603
REPUTATION
7,934
CONTRIBUTIONS
4 Questions
3,191 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
817
RANK
of 17,976
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Unrecognized function or variable 'importTensorFlowNetwork'
importTensorFlowNetwork requires the Deep Learning Toolbox Importer for Keras Models support package. To install this support pa...
12 hours ago | 0
TASK Add a Pipe (IL) (Isothermal Liquids > Elements) and a second Reservoir (IL) block. I Am Unable to Complete it, keep showing Error while submitting
I discovered this is a known issue. In the meantime, see this Answer for a workaround https://www.mathworks.com/matlabcentral/a...
14 hours ago | 1
how can we get this about in simulink model
Use a Ramp block. Adjust the block parameters to get your desired output and slope values. Connect to a Scope block and simulate...
15 hours ago | 0
| accepted
How to build a 3D chart from a 2D table
What type of 3d chart do you want to create? For a surface, you could use the following syntax (Z needs to be a matrix). Just n...
17 hours ago | 0
SIMULINK ONRAMP 4.2 Basic Logic Further Practise
Further Practice exercises are not assessed. The signal you see in the assessment pane is for Task 3. The Further Practice says ...
18 hours ago | 0
Not able to access all the self-paced courses
The only self-paced courses that are available to everyone are the onramps. All other courses require a separate license for Onl...
19 hours ago | 0
| accepted
How to plot contour plot of a function?
I would use meshgrid to create the arrays x and y, and then use those to calculate I without symbolic variables. However, in do...
1 day ago | 0
[macOS] MATLAB Drive Connector requires login on every restart
Please contact support
3 days ago | 0
Find complete rows that meet a condition
You could use two conditions - one for the first column and another for the 2nd column - to find the rows that meet your criteri...
3 days ago | 0
| accepted
Plotting a multi-dimensional matrix
If you want to create a 2D line plot where there is a different line (data series) for each sheet of your array, the simplest wa...
4 days ago | 0
How to add max and min data label of plot in matlab with help of annotation?
You limit you view of the data in the figure by using xlim, but not your search for max and min values. This does mean some of t...
4 days ago | 0
How to set number of value ranges in colorbar?
Use the 'tick' property to specify tick locations. See this related answer: https://www.mathworks.com/matlabcentral/answers/4477...
4 days ago | 1
find(V,1) returns an index that doesn't match with the plot
Find tells you the index value of the elements of SL_B_Optml that meet your criteria. It therefore will be an integer value. How...
5 days ago | 0
| accepted
There are no products to uninstall
This new error suggests that you have not installed the MATLAB Engine for Python. Follow the instructions here: https://www.mat...
5 days ago | 0
Calcuating equally-spaced sums from unevenly-spaced time-series data
I would put your datetime and bytes into a table (consider cell2table). Convert your times to datetime, and then use sortrows to...
6 days ago | 1
| accepted
Datetime errors when I import data
You are passing a character array into the datetime function, not a variable Maturity = datetime('Scadenza'); This line of cod...
6 days ago | 0
| accepted
Workspace selection dropdown when debugging missing in R2022a
I believe it is still there but in a differnt location. See this page: https://www.mathworks.com/help/matlab/matlab_prog/examin...
7 days ago | 0
There are no products to uninstall
See this answer: https://www.mathworks.com/matlabcentral/answers/92244-how-do-i-uninstall-matlab-on-windows-when-the-uninstaller...
7 days ago | 0
Finding outliers in a dataset
If you process your data in a live script, consider interactively exploring different ways to detect and remove outliers using t...
8 days ago | 0
combine two cell into one string
I would do this in 2 steps. file = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/1085370/SummaryResult%20-%20...
8 days ago | 0
How to separate a vector into bins and average each bin
I don't exactly follow how you get from A to B, and I'm fairly certain there isn't a single function that will get you what you ...
9 days ago | 0
| accepted
Legend for dashed line
I suspect the issue is that you are missing a 'hold off' and have run your code multiple times. At least I could duplicate by ru...
9 days ago | 0
How to ensure that MATLAB reads the first column as a column in a table?
You are using 'RowNames', which are not considered a table column. You therefore either need to use rownames everywhere (origina...
10 days ago | 0
| accepted
Help plotting specific points
plot the data as you normally would (see Ch 9 of MATLAB Onramp if you need help with that). I'd recommend scatter. Then to modif...
10 days ago | 1
Problem with output of fprintf command
Look at the examples for fprintf in the documentation. You need to include a format specification to include variable values. x...
11 days ago | 1
| accepted
How to fix index in position 2 exceeds array bounds (must not exceed 1920)
The error message indicates that you are trying to index your variable using a value that exceeds the size of the array. Here, p...
11 days ago | 0
Counting the number of values using hiscounts with 2 arrays
It is unclear to me exactly what you are trying to do, and why you need to have A to know the bincounts of B. All you need is th...
12 days ago | 0
| accepted
Plot average monthly flow from Jan-Dec for 'x' number of yrs on one plot using the provided data
Group by year and monthofyear. Then you can use ismember and reshape to identify and organize the data in a manner that will all...
12 days ago | 1
| accepted
How to change repeat dates that occur right after each other
Perhaps not the most straightforward way, but this appears to work for me on your processed Nightly_Prompt.xlsx data. Basically,...
14 days ago | 0
| accepted
AppDesigner axes, component creation error
Perhaps this answer is helpful https://www.mathworks.com/matlabcentral/answers/416995-display-video-stream-in-app-designer
14 days ago | 0