Community Profile

photo

Cris LaPierre

MathWorks

Last seen: Today Attivo dal 2018

Statistiche

All
  • 36 Month Streak
  • Community Group Solver
  • Thankful Level 4
  • Most Accepted 2021
  • Ace
  • Revival Level 4
  • Solver
  • Knowledgeable Level 5
  • First Answer

Visualizza badge

Content Feed

Visto da

Risposto
I can't download program files from previous MATLAB online training, "Deep Learning with MATLAB"
This looks like a bug to me, as course zip files are linked to a specific release. Please contact support to report this. https...

circa 11 ore fa | 0

Risposto
How to create a "scatter" matrix without using a for loop?
i think sub2ind will do the trick. M = zeros(4); row = [1,2,3]; col = [2,4,4]; val = [123,321,456]; ind = sub2ind(size(M)...

circa 11 ore fa | 0

Risposto
Variables corresponding with NaN won't graph
Use an index to tell plot which values to plot. ind = ~ismissing(b1); plot(b1(ind),b2(ind))

circa 18 ore fa | 1

| accettato

Risposto
Facing some errors during doing the program matlab.
The first line of the error message gives you the root cause: Undefined function or variable 'degree'. At the bottom of your se...

2 giorni fa | 1

Risposto
How do I access the script on my Matlab online account after I have exceeded 20 hours?
MATLAB Drive is the file system used in MATLAB Online. Try navigating to drive.matlab.com to access your files.

2 giorni fa | 0

| accettato

Risposto
Stellar motion part 2, task 5
It appears at some point you created a variable named legend, which has overwritten the legend function. Try adding clear legen...

2 giorni fa | 0

Risposto
MATLAB Grader -- assessing functions
Perhaps you could explain what it is you think should be happening? The value of x used to assess the learner solution is defin...

3 giorni fa | 0

| accettato

Risposto
Plot 3D data in 2D as lines
Plot your Z array using the plot command. Each column will be treated as a different series. Share your data so we can be more ...

3 giorni fa | 0

Risposto
How to properly create a table with vectors
First, a note that ID cannot be a double if you want to include the '#'. It must be char or string. I think the simplest way is...

3 giorni fa | 0

Risposto
How to export a matlab table as a excel/csv file?
I suggest using writetable. writetable(T,filename) writetable determines the file format based on the specified extension. The...

3 giorni fa | 0

| accettato

Risposto
Retime for custom timestep (6 hour)
When you use the automatic binning options of TimeTables, this is how the new times are created. If you want to ensure your new ...

3 giorni fa | 0

| accettato

Risposto
Is there a way to edit the own items of an editable uidropdown, where mutiple items can be the same value?
There is a way to do this. As suggested, use the ItemsData property. You need to first define this when creating your drop down....

4 giorni fa | 0

| accettato

Risposto
How to obtain a MATLAB licence number from the instructors in a MATLAB essentials coursework (free audit track)
You should be able to just drag and drop a file into your current folder browser in MATLAB Online.

8 giorni fa | 0

Risposto
Unrecognized function or variable 'X0'.
There are actually a lot of errors with your code. It might be worth taking a step back and thinking through your approach. Fir...

8 giorni fa | 0

| accettato

Risposto
Issue using lsqcurvefit function - App Designer
Since you didn't share your code, I created a simple example in app designer using this example from the lsqcurvefit documentati...

8 giorni fa | 0

| accettato

Risposto
my plot is blank?
There are 3 things to check right away that your variable velocitiesB1 and velocitiesB2 are not empty that those variables hav...

8 giorni fa | 1

Risposto
How to plot a figure from a data where a parameter is within a range (not with the full range of data)
Logical indexing load('H_LC(22).mat') idx = x(324,:)>0.4 & x(324,:)<0.9; plot(x(324,idx),x(323,idx),'k', 'LineWidth',1) x...

9 giorni fa | 0

| accettato

Risposto
How to restore App designer's default layout
I would try the dropdown menu in the top right of your window. Select Restore

9 giorni fa | 1

Risposto
Error using reshape Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate size for that dimension.
The issue appears to be that you do not have the number of elements in your array as you think you do. Your code was written e...

11 giorni fa | 0

Risposto
plot in matlab app design siteviewer
In App Designer, you need to designate the target axes. I think the equivalent code should look something like this (untested). ...

11 giorni fa | 1

Risposto
i need MATLAB code to I have yield data of 38 days , i want to expand the no of data to 151 keeping the sum same
You haven't provided any requirements, so the easiest way to do this is to just pad your vector with zeros. old = [3.46, 3.53, ...

11 giorni fa | 0

Risposto
Sort Matlab table, monthly and seasonally. plot mean and trend seasonal map
Use sortrows to sort your table. Create a column of month names using month. Convert them to categorical values and use mergeca...

11 giorni fa | 0

| accettato

Risposto
Matlab 2021b is working very well when dealing with DRL . However, Matlab versions 2022a,2022b, and 2023a are always crashed. How to solve this problem?
Please contact support: https://www.mathworks.com/support/contact_us.html

11 giorni fa | 0

| accettato

Risposto
read csv data with numbers, characters and text
Have you tried readtable? What didn't work about it? I get the results I would expect. It even successfully ignored the delimite...

11 giorni fa | 0

| accettato

Risposto
calculating the average of a column of a csv file with specified steps and saving it in a new csv file
Here's a simple way to do this in MATLAB opts = detectImportOptions('Data_1min.csv','VariableNamingRule','preserve'); opts = s...

12 giorni fa | 0

Risposto
Locking sections of a Live Script
The best place to submit suggestions to the MathWorks is here under 'Create a Service Request': https://www.mathworks.com/suppo...

12 giorni fa | 0

Risposto
Invalid expression error even though the code seems to be correct
It appears you may not understand how to use the code you have shared. Your classdef code needs to go in it's own m-file (lines...

12 giorni fa | 0

Risposto
3D plotting with three input an one output.
If I understand isosurface correctly, you are showing a surface that represents where ed=1 in your volumetric data. For this sur...

12 giorni fa | 0

| accettato

Risposto
insert box flag in table in the app designer
See this answer: https://www.mathworks.com/matlabcentral/answers/1786510-how-to-add-checkbox-to-uitable-in-appdesigner-app

14 giorni fa | 1

Risposto
Hello, I want to make function Runge-Kutta orde 4 with equation depend on time, but in MATLAB i get some error
You have not defined j, so in MATLAB, by default that letter is used to create complex numbers. As the error message states, you...

15 giorni fa | 2

| accettato

Carica altro