
Veronica Taurino
Civil Engineer and Data Scientist
Python, MATLAB, SQL
Spoken Languages:
English, Italian
Professional Interests:
Statistics
RANK
655
of 260.695
REPUTATION
92
CONTRIBUTIONS
21 Questions
21 Answers
ANSWER ACCEPTANCE
52.38%
VOTES RECEIVED
48
RANK
9.135 of 17.910
REPUTATION
65
AVERAGE RATING
5.00
CONTRIBUTIONS
3 Files
DOWNLOADS
9
ALL TIME DOWNLOADS
307
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Remove the bottom x-axis line of a plot
In general, to move your x-asix on top: set(gca,'XAxisLocation','top') To hide the axis: set(gca,'xtick',[]) or h = gca; ...
etwa ein Monat ago | 0
Interpreter Latex for uitreenode with uistyle not working
Solved. I just upgraded to Matlab 2022a
etwa 2 Monate ago | 1
| accepted
Question
Interpreter Latex for uitreenode with uistyle not working
I am trying to reproduce the following example from the documentation page of uistyle: fig = uifigure("Position",[500 500 300 3...
etwa 2 Monate ago | 1 answer | 1
1
answerAsking the user to enter the extension of the files and load them in workspace
What do you want to do with those files? Update them as Matlab variables? Store their paths? However, let's say you want to imp...
etwa 2 Monate ago | 1
| accepted
How to save (or prevent from being deleted) handle to axes within a GUI (created using GUIDE) ?
Maybe I can contribute, I was in a similar situation. I had to add a plot3 over several axes, but the handles were deleted dur...
etwa 2 Monate ago | 1
Question
Position of Not-visible figure is WRONG (two monitors bug?)
If I create a figure and maximize it, I got sizes fitting my second monitor: fig = figure('Menu','none','ToolBar','none','Windo...
etwa 2 Monate ago | 1 answer | 1
1
answerApp Designer - Pointer update issue
I have the same problem. The pointer does not change until I move the cursor. I am working in the app designer, each callback ha...
etwa 2 Monate ago | 1
Question
Remove menubar from a figure BUT leaving the toolbar
Is there a way to remove the menubar (in red below) from a figure without remove the little toolbar (in blue)? Using set(g...
2 Monate ago | 1 answer | 1
1
answerQuestion
Point cloud rotate beyond plot limit (App Design based)
Hello! My app has two panels: on the left data input, on the right plot results. My problem is: the plot can be rotated even ...
2 Monate ago | 0 answers | 1
0
answersApp Slow With UIAxes
Are there any speed-improvements in Matlab 2021b? If so, I still struggle to find it by myself
2 Monate ago | 1
Question
Vertical scroll does not work, can't properly resize APP (Matlab app designer)
I created months ago a two-panel app, but till now I used only the left panel. Vertical scrolls appeared on small screens. Rece...
2 Monate ago | 0 answers | 2
0
answersQuestion
Plot fitting curve (x,y) in 3D (x,y,z)
Hello! I use the fit funciton several times on (x , y) data. Therefore I got several fitting functions. I would like to plot ...
8 Monate ago | 1 answer | 1
1
answerSolved
The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...
10 Monate ago
Question
reference system does not rotate (pcshow)
Hi! I noticed the reference system created using pcshow is not rotating properly. It seems to rotate just around the x-axis (th...
10 Monate ago | 0 answers | 1
0
answersQuestion
Horient facets of a mesh in the same directions
Hello to everyone! I have a point cloud. I am trying to reproduce the following mesh with Matlab: The blue mesh has been gen...
etwa ein Jahr ago | 0 answers | 1
0
answersQuestion
Add context menu when LEFT click on button (app design)
Hi! I am trying to add kind of a context menu after LEFT pushing a button on a specific tab of my app, but it seems not to be a...
etwa ein Jahr ago | 2 answers | 1
2
answersHow link Zoom view for 3D plots belonging to a Tab (linkprop does not work?)
I got the problem, I solved reading this: Linkprop not persisting after changing scope - MATLAB Answers - MATLAB Central (math...
etwa ein Jahr ago | 1
| accepted
How link Zoom view for 3D plots belonging to a Tab (linkprop does not work?)
Any suggestion?
etwa ein Jahr ago | 0
Question
How link Zoom view for 3D plots belonging to a Tab (linkprop does not work?)
Hi! I have several 3D plots inside a Tab. I need to link their view in zoom, pam and rotation when I tick a checkbox. I can't ma...
etwa ein Jahr ago | 2 answers | 1
2
answersHow to use "nan"
Maybe this can help: quiver plot - need help to remove NaN - MATLAB Answers - MATLAB Central (mathworks.com)
mehr als ein Jahr ago | 1
Question
Get Windows taskbar height
Hello! I can't get the correct Windows taskbar height by code. I need it for the define the height of my app (app design). I ge...
mehr als ein Jahr ago | 1 answer | 1
1
answerNormally distributed Random numbers generator issue
The following (but also yours, from my pov) seems quite normal to me, why is it not ''enough'' normal for you? figure number =...
mehr als ein Jahr ago | 1
while loop index exceeds array elements problem
Did you check your variable "i" has been set up to your desired value in the second while? Because in the first while you are up...
mehr als ein Jahr ago | 1
Question
Error displaying custom Data Tips
I've created a callback to displaying Data Tips on a pointcloud (pcshow) after the space bar is pressed. The flow is: Press on ...
mehr als ein Jahr ago | 0 answers | 1
0
answersQuestion
Add image on pcshow plot
Is it possibile to add an image on a pcshow image (tab of images, in my case)? I'm using this but it does not work: How to Plac...
mehr als ein Jahr ago | 1 answer | 1
1
answerhow to create a matrix in matlab?
Your question is not clear. If you have those 3 arrays: L12 = [0 0 0 0 1 1 1 1]; L13 = [0 0 1 1 0 0 1 1]; L23 = [0 1 0 1...
mehr als ein Jahr ago | 1
| accepted
Extract data below a curve
Your input data is something like that: % Hypotesis: black points do not overlay the grid (can lay in between blue points) A =...
mehr als ein Jahr ago | 2
Reverse data set as the example
I don't get the question as well. What result do you expect on the following arrays: X = [2 4 8 4 2 56 78]; Y= [2 2 4 11 75...
mehr als ein Jahr ago | 1
How do I make different groups within a matrix?
How do you need to get arrays associated? Try this: clear all close all x= (50)*rand(50,1); y= (50)*rand(50,1); z= (50)...
mehr als ein Jahr ago | 3
| accepted
How to set the color in a for loop for a plot within the for loop with an if statement?
I don't get very well what you are asking for. You need to color t between 1 and 5 AND e between 1 and 5 in black, otherwise t b...
mehr als ein Jahr ago | 1
| accepted