Cris LaPierre - MATLAB Central
photo

Cris LaPierre

MathWorks

Last seen: Today Active since 2018

Followers: 9   Following: 0

Statistics

All
MATLAB AnswersCodyFrom 09/18 to 05/25Use left and right arrows to move selectionFrom 09/18Use left and right arrows to move left selectionTo 05/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

4 Questions
4.417 Answers

Cody

0 Problems
35 Solutions

RANK
23
of 298.634

REPUTATION
11.410

CONTRIBUTIONS
4 Questions
4.417 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
1.386

RANK
 of 20.631

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
12.912
of 161.859

CONTRIBUTIONS
0 Problems
35 Solutions

SCORE
420

NUMBER OF BADGES
3

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 5
  • Most Accepted 2024
  • Commenter
  • Most Accepted 2023
  • Master
  • 36 Month Streak
  • Community Group Solver
  • Most Accepted 2021
  • Revival Level 4
  • Solver
  • Knowledgeable Level 5
  • First Answer

View badges

Feeds

View by

Answered
Where is this menu when debugging a program with matlab2024b and making the program run to the cursor position matlab2024b调试程序的时候让程序运行到光标处这个菜单在哪里
I believe this is now called 'Run to Here'. It is accessed by rt clicking on the line number and selecting the otpion in the men...

4 dagen ago | 1

Answered
How to plot function x(2)=-1/2*x(1)+t?
Did you mean to assign the result of -1/2*x(1)+t; to the second column of x? x(:,2)=-1/2*x(1)+t; If so, then the code runs at ...

7 dagen ago | 1

| accepted

Answered
Inserting additional data in an already created table
The issue is that char arrays must be padded so that they all have the same length. The value you are assigning does not have th...

7 dagen ago | 0

| accepted

Answered
[Image Alignment] Align two images taken under different zooming and lighting conditions
I used the Registration Estimator App, which produced the following resutls. img1 = imread('img1.jpg'); img2 = imread('img2.jp...

7 dagen ago | 1

| accepted

Answered
How put different colors in different range of values in colorbar?
You need to define a colormap with the number of unique colors you want, and then specify the colorbar ticks. We don't have the...

8 dagen ago | 0

| accepted

Answered
Getting all max, min values of a function as a set of coordinate points
I would use findpeaks syms x y real y=abs(x^3-9*x); [X,Y] = fplot(y, [-5 5]); [pk, loc] = findpeaks(Y,X); [pkN, locN] = fi...

10 dagen ago | 0

Answered
Spectral Analysis Techniques Course _ Issue plotting a window created with Window Designer in MATLAB
There seems to be a bug with this task. Please report this directly to MathWorks here: https://www.mathworks.com/support/contact...

13 dagen ago | 1

| accepted

Answered
How to set variable names using Readtable with hierarchical categories (Excel file with merged cells / multiple header rows)
There may be a better way, but I would do this in 2 steps. First, read the headers and create variable names, then read the data...

14 dagen ago | 0

Answered
How to set black color for zero (or nan) values in surf and contourf plots?
First, the autumn colormap does not contain black, so you will need to do some coding for this to happen. Additionally, nan val...

14 dagen ago | 2

Answered
logarithmic binning of "x" values
I'm not sure the end result is much simpler, but the function that comes to mind is discretize. You'd still need to define your ...

14 dagen ago | 1

| accepted

Answered
Navigate to your MATLAB desktop and click the Apps tab from the MATLAB Toolstrip. Under Simscape, click the Battery Builder Icon.
Estas buscando en el Apps tab de MATLAB? No se encuentra Battery Bulider en el Apps tab de Simulink. Esta instalado Simscape ...

15 dagen ago | 0

Answered
Is mlcpostinstall.exe a valid matlab file?
This is the same name used for MATLAB Drive Connector. What looks odd to me is the version date in the folder path.The current d...

15 dagen ago | 0

| accepted

Answered
Help Using Variable In Workspace in For Loop
Your for loop has been defined inside a function. Functions have their own workspace. You need to either pass the variable into ...

16 dagen ago | 0

| accepted

Answered
Varying two variables in a for loop for one output
I would remove the for loop and use meshgrid instead. m_water_range = linspace(5,40,45); N_range = linspace(5,50,45); [m...

16 dagen ago | 0

| accepted

Answered
undocking command window in new desktop
It looks like only the Editor can be undocked in the beta version of the new desktop in R2024b.

16 dagen ago | 0

| accepted

Answered
Progress seems to be stuck at a certain percentage in the MATLAB Simulink course
Please contact MathWorks directly: https://www.mathworks.com/support/contact_us.html

16 dagen ago | 0

Answered
How to find correct "feature" name for parallel computing toolbox?
The easiest way for me is to use the toolbox, then run license('inuse') Starting parallel pool (parpool) using the 'Processes' ...

18 dagen ago | 4

Answered
How do I determine if a column header exists in a table?
I would access the table varaible names and check if 'x' is a member or not. T = readtable('patients.xls') varNm = T.Propertie...

18 dagen ago | 0

Answered
exporting-to-excel-spreadsheets
You will need to load each file into MATLAB in order to process the data. There are various techniques depending on how your dat...

22 dagen ago | 0

| accepted

Answered
time series graph representation of EEG signals
No way of knowing without seeing the code used to create the plots. However, the images appear to be using the default colors, s...

22 dagen ago | 0

Answered
Table resorting after deleting selected rows from the sorted Table
You haven't shared the code you are using to complete your tasks. That will allow us to say why it is happening. However, here...

23 dagen ago | 1

Answered
How do I fix the error displayed on the code below
Your variable K_global does not have as many rows as you expected. Specifically, it only has 9, so we have to assume that your i...

29 dagen ago | 0

Answered
When using a writetable to write a table file containing data in datetime format to Excel, the saved datetime data in Excel is not in the same format as the datetime data
For Excel files, writetable writes table variables containing datetime arrays as Excel dates. The time data is still all there, ...

ongeveer een maand ago | 0

| accepted

Answered
How do I delete data from a channel?
See this answer: https://www.mathworks.com/matlabcentral/answers/2174913-deleting-data-from-the-server

ongeveer een maand ago | 0

Answered
Bug in readtable()? - if the first values in a CSV's column are missing, the whole column is misinterpreted
I wouldn't call it a bug. It's an artifact of trying to autodetect the format, which will naturally not get it right every time....

ongeveer een maand ago | 0

Answered
Why do I receive the error: Unrecognized function or variable 'V_o'?
The most likely reason is that you have not yet defined a variable with that name in your code. Did you define a variable V_0 or...

ongeveer 2 maanden ago | 1

Answered
Legends using bodeplot with latex interpretation
Something about how bodeplot now creates a chart object has made it difficult to set the interpreter property of the legend prog...

ongeveer 2 maanden ago | 0

| accepted

Answered
Date input from csv changing
The warning is telling you that the datetime format detected in the file is ambiguous. You can avoid this by specifying the form...

ongeveer 2 maanden ago | 0

| accepted

Answered
how to add contourf(X, Y, Z) in the polaraxes
I see what you mean - the colorbar added to the contourf axes has shifted the plot so that it no longer overlaps correctly the p...

ongeveer 2 maanden ago | 0

| accepted

Answered
How can i modify step 3 section of code, to visualize several objects in the image?
Not sure how your data is formatted, but typically this is done using the showShape function.

ongeveer 2 maanden ago | 0

Load more