MATLAB AppDesigner | Tutorial 16 | Adding rows and columns to tables

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 พ.ย. 2024

ความคิดเห็น • 25

  • @Horst1109
    @Horst1109 3 ปีที่แล้ว

    Thank you very much. You explained so easily, I could understand everything and got all my data managed with your help.

  • @yingchengzan3139
    @yingchengzan3139 4 ปีที่แล้ว +2

    You're a very good teacher! thanks !

  • @prabhjeetsingharora
    @prabhjeetsingharora 3 ปีที่แล้ว

    Hi Benito, thank you for creating such easy-to-understand videos. I was just wondering, is it possible to enter a table with user-defined values. So that I can create a vector out of it and use it as an initial condition to solve the simulation problem. Thanks

  • @tuncaykamas5275
    @tuncaykamas5275 3 ปีที่แล้ว

    Hello Benito, great tutorials I really enjoy and learn a lot. I have just tried to generate my own app that works along with MATLAB but does not work as a standalone app. I guess it is due to the fzero function that I used to solve an equation because it is the only difference from your apps which always work as a standalone app. Could you please tell me how to handle with this issue. By the way, on the command window, these lines appear when I run my app as a standalone app: Unknown elementType = toolstrip_tab
    Unknown elementType = list_item. Thanks in advance and keep on your successful teaching career.

  • @abdulkadirgozuoglu8946
    @abdulkadirgozuoglu8946 5 ปีที่แล้ว +1

    Thank you very much..

  • @ab-bs5dz
    @ab-bs5dz 2 ปีที่แล้ว

    Hi Benito.. Great Videos. Please I need your help 😃. How can I read a table with Data and variables names that start at nth row(e.g row7).

  • @YaGaRa12
    @YaGaRa12 4 ปีที่แล้ว +1

    Another way to open file (csv or any other file compatible with matlab):
    [file,path] = uigetfile('*.csv');
    File = strcat(path,file);
    data = readtable(File,'HeaderLines',1);

  • @matteomascia5989
    @matteomascia5989 3 ปีที่แล้ว

    hi Benito, I would ask you something
    in a previous tutorial you renamed the table's VariableNames, since the new VariabaleNames contain a space ('x Data') I'm no more able to access it. I must remove the space or it exists a way to handle it?

  • @viktorgonczi343
    @viktorgonczi343 3 ปีที่แล้ว

    Hello Benito!
    Is there any solution for the new column name to be automatically extended when I add a new column to the table?
    If I type column 1, column 2, and column 3, the fourth column will no longer have a name.
    Thank you very much!

  • @MUHAMMADUSMAN-i6v
    @MUHAMMADUSMAN-i6v ปีที่แล้ว

    Hi hope you are fine. Can you please tell me as my table data in rows and how i shift it into columns in GUI matlab?.

  • @islamdib9663
    @islamdib9663 ปีที่แล้ว

    hello
    please, how do make desktop application ?
    and did it run without matlab, I mean if i didn't instal matlab in my pc, did this application work?

  • @prakashshyamkaruppiah320
    @prakashshyamkaruppiah320 3 ปีที่แล้ว

    Hi, can you please tell me how to put a function in an new column For eg. If I import ColA and ColB from Excel then I need ColC = ColA*ColB.

  • @nikhilpatil42
    @nikhilpatil42 3 ปีที่แล้ว

    Hi.. is there any video to generate a PowerPoint presentation using Matlab with default template?

  • @hariputra8705
    @hariputra8705 4 ปีที่แล้ว +1

    hi benito i would ask something
    i use Matlab R2016A,and i cann't found any table in component library,what should i do to add more component in my library THX B4

    • @BenitoSebastian
      @BenitoSebastian  4 ปีที่แล้ว

      Hi Hari,
      You can use the following code:
      fig = uifigure;
      uit = uitable(fig,'Data',t.table);
      This is also a helpful link:
      uk.mathworks.com/help/matlab/ref/uitable.html

  • @faisalaziz6331
    @faisalaziz6331 3 ปีที่แล้ว

    Hi benito, could you please reply me with how to enter 6x6 matrix in app designer like we used to do in Matlab

  • @krutikgujarathi1554
    @krutikgujarathi1554 4 ปีที่แล้ว

    Sir please tell me that how open the another windows by clicking to button .....or how to open the multiple windows by clicking to next button

  • @kestonsmith1354
    @kestonsmith1354 4 ปีที่แล้ว +1

    can you do a video how to delete rows and columns and compare rows for analytics

  • @joelh3466
    @joelh3466 4 ปีที่แล้ว +1

    Hi how do u edit ur videos

    • @BenitoSebastian
      @BenitoSebastian  4 ปีที่แล้ว

      Hi Joel,
      I use final cut pro to edit my videos.

    • @joelh3466
      @joelh3466 4 ปีที่แล้ว +1

      Benito Sebastian do u use a Mac then

    • @BenitoSebastian
      @BenitoSebastian  4 ปีที่แล้ว

      @@joelh3466 Yes :)

  • @amirroblex133
    @amirroblex133 4 ปีที่แล้ว

    Hi Benito
    Tnx for your helps so far.
    I hope you can help me with this problem in my app.
    I have a map (exactly like the France Eiffel Tower example in link below)
    uk.mathworks.com/help/map/points-lines-and-polygons.html
    That when I run its code in a script it has no problem and it displays in a figure.
    But my problem and question is for when I want to run it in appdesigner.
    I don't know where should i plot it, I guess it must be plotted in a ui axes but i don't know its right or not, and i have problem in plotting it to axes. I use a plot code like number 9 tutorial for plotting axes. But it gives a error for not having enough input arguments and then the exact same figure like in the script one displays again.
    I appreciate your helps that made me to reach to this level.