Katie
Followers: 0 Following: 0
Feeds
已回答
Matlab GUI with data table , import and graph
Hi! Here's a tutorial for building an app using Matlab app designer that walks through importing data, making and editing tables...
Matlab GUI with data table , import and graph
Hi! Here's a tutorial for building an app using Matlab app designer that walks through importing data, making and editing tables...
2 years 前 | 0
已回答
bipolar baseband modulation design
polari is an array of 1's and 0's. If for example polari was [1, 1, 0, 1] then bipolari=bipolar(polari) would say that you want ...
bipolar baseband modulation design
polari is an array of 1's and 0's. If for example polari was [1, 1, 0, 1] then bipolari=bipolar(polari) would say that you want ...
2 years 前 | 0
已回答
How to make rectangular mesh from Points cloud
You can use a combination of meshgrid and griddata to do this. In the code below, I'm assuming that x is a column vector with th...
How to make rectangular mesh from Points cloud
You can use a combination of meshgrid and griddata to do this. In the code below, I'm assuming that x is a column vector with th...
5 years 前 | 1
已回答
Creating a loop for a matrix function
How you would write this code depends on how you want to do the function on the matrix rows: Option 1: rows 1&2, then rows 3&4,...
Creating a loop for a matrix function
How you would write this code depends on how you want to do the function on the matrix rows: Option 1: rows 1&2, then rows 3&4,...
5 years 前 | 0
已回答
plotting 2 .mat fikes ith the same variable name
When you load the .mat files you can store the contents in two different variables and then dot index your variables: Data=load...
plotting 2 .mat fikes ith the same variable name
When you load the .mat files you can store the contents in two different variables and then dot index your variables: Data=load...
5 years 前 | 0
| 已接受
已回答
how to write in edit field
Hi! What you're showing in your question is the callback function for the CamperaIP edit field. This function is called whenever...
how to write in edit field
Hi! What you're showing in your question is the callback function for the CamperaIP edit field. This function is called whenever...
5 years 前 | 1
| 已接受
已回答
Saving matlab result in different directory
Hi! You can do this by using the full file path in your file name. For example: filename=strcat('C:\Users\katie\Documents\MATLA...
Saving matlab result in different directory
Hi! You can do this by using the full file path in your file name. For example: filename=strcat('C:\Users\katie\Documents\MATLA...
5 years 前 | 1
| 已接受
提问
Terrain from IMG, JP2, or Tiff File
Hi, I need to plot high resolution lunar terrain mostly as contour plots and using meshm from the mapping toolbox. I have access...
5 years 前 | 2 个回答 | 0
2
个回答已回答
Inner matrix dimensions must agree
You're missing a dot in front of the * in front of the sin x_time = A.*exp(-zeta.*wn.*t).*sin((wd.*t)+phi);
Inner matrix dimensions must agree
You're missing a dot in front of the * in front of the sin x_time = A.*exp(-zeta.*wn.*t).*sin((wd.*t)+phi);
5 years 前 | 1
已回答
I can not find an error in the expression
Hi! It looks like you're really close! You're just missing a couple dots in front of some of your multiplication and division op...
I can not find an error in the expression
Hi! It looks like you're really close! You're just missing a couple dots in front of some of your multiplication and division op...
5 years 前 | 1
| 已接受
已回答
I need to plot a graph having a linear value in y and another having a quadratic value in y
Hi! It looks you have a couple small assignment errors that are preventing your code from working how you want to. Based on your...
I need to plot a graph having a linear value in y and another having a quadratic value in y
Hi! It looks you have a couple small assignment errors that are preventing your code from working how you want to. Based on your...
5 years 前 | 0
已回答
How do I fix my meshgrid?
Hi! Thanks for providing extra details! Below are the steps I used with explanations for each. I also labeled them in accordance...
How do I fix my meshgrid?
Hi! Thanks for providing extra details! Below are the steps I used with explanations for each. I also labeled them in accordance...
5 years 前 | 1
| 已接受
已回答
Im programming a mini game and i wanted help with how to rank based on time
Hi! If you're just storing time as number of seconds, you can use the sort function. Here's a quick example to illustrate: time...
Im programming a mini game and i wanted help with how to rank based on time
Hi! If you're just storing time as number of seconds, you can use the sort function. Here's a quick example to illustrate: time...
5 years 前 | 0
已回答
Plot specific UIAxes command in a function
Hi! The code below shows two different examples of taking a UIAxes object as an input to a function. I'm unclear as to whether y...
Plot specific UIAxes command in a function
Hi! The code below shows two different examples of taking a UIAxes object as an input to a function. I'm unclear as to whether y...
5 years 前 | 1
已回答
Multiple editable tables in app designer
Hi! I've made a couple apps with multiple editable tables, and here's how I've done it. Disclaimer: my tables tend to be prett...
Multiple editable tables in app designer
Hi! I've made a couple apps with multiple editable tables, and here's how I've done it. Disclaimer: my tables tend to be prett...
5 years 前 | 0
| 已接受
提问
How can I change the colormap for each tab in a tabbed figure?
I am trying to create a tabbed figure where each of the two tabs has a different viewshed plotted on terrain using the mapping t...
5 years 前 | 1 个回答 | 0